Viewing docs for an older release. View latest

useNavigation

This hook is simply a re-export of React Router useNavigation.

import { useNavigation } from "@remix-run/react";

function SomeComponent() {
  const navigation = useNavigation();
  navigation.state;
  navigation.location;
  navigation.formData;
  navigation.formAction;
  navigation.formMethod;
}

For more information and usage, please refer to the React Router useNavigation docs.

Docs and examples licensed under MIT