Tag: Next.js
All the articles with the tag "Next.js".
Handling Form Validation Errors and Resets with useActionState()
Published:The React 19 `useActionState` hook is a powerful tool for creating a state based on the result of an action, typically useful with form submissions. Learn how to create a validated form using the hook, and how to handle form resets and errors with it.
Implementing Feature Flagging with the Next.js App Router
Published:Feature flagging allows you to enable or disable features without deploying new code. Learn how to implement a simple feature flagging solution with the Next.js App Router.
Creating a Reusable SubmitButton with useFormStatus()
Published:The React 19 `useFormStatus` hook is a powerful tool for handling form submissions. Learn how to create a reusable SubmitButton that works across multiple forms and enables progressive enhancement.