Form

  • Enhances the HTML form tag
  • Submits the data to actions via fetch
  • The form state can be observed using useNavigation hook
  • Does not need JavaScript to work
import { Form } from "@remix-run/react";

<Form method="POST">
  <input
    type="text"
    name="name"
    placeholder="Your name"
  />
  <button type="submit">Submit</button>
</Form>

Name:

Form State: idle