React Router API Reference
    Preparing search index...

    Function useSubmit

    • The imperative version of <Form> that lets you submit a form from code instead of a user interaction.

      Returns SubmitFunction

      A function that can be called to submit a Form imperatively.

      import { useSubmit } from "react-router";

      function SomeComponent() {
      const submit = useSubmit();
      return (
      <Form onChange={(event) => submit(event.currentTarget)} />
      );
      }

      @public

      framework

      data