Please note that this component is exported both from
react-router and react-router/dom with the only difference being that the latter automatically wires up react-dom’s flushSync implementation. You almost always want to use the version from react-router/dom unless you’re running in a non-DOM environment.Type Declaration
Props
The DataRouter instance to use for navigation and data fetching. Create one using
createBrowserRouter, createMemoryRouter, or createHashRouter.The
ReactDOM.flushSync implementation to use for flushing updates.You usually don’t have to worry about this:- The
RouterProviderexported fromreact-router/domhandles this internally for you - If you are rendering in a non-DOM environment, you can import
RouterProviderfromreact-routerand ignore this prop
An error handler function that will be called for any middleware, loader, action, or render errors that are encountered in your application. This is useful for logging or reporting errors instead of in the ErrorBoundary because it’s not subject to re-rendering and will only run one time per error.The
errorInfo parameter is passed along from componentDidCatch and is only present for render errors.Control whether router state updates are internally wrapped in
React.startTransition.- When left
undefined, all state updates are wrapped inReact.startTransition- This can lead to buggy behaviors if you are wrapping your own navigations/fetchers in
startTransition.
- This can lead to buggy behaviors if you are wrapping your own navigations/fetchers in
- When set to
true, Link and Form navigations will be wrapped inReact.startTransitionand router state changes will be wrapped inReact.startTransitionand also sent throughuseOptimisticto surface mid-navigation router state changes to the UI. - When set to
false, the router will not leverageReact.startTransitionorReact.useOptimisticon any navigations or state changes.