OptionalbasenameThe base path for the application. This is prepended to all locations
OptionalchildrenNested Route elements describing the route tree
The location to match against. Defaults to the current location. This can be a string or a Location object.
OptionalnavigationThe type of navigation that triggered this location change.
Defaults to NavigationType.Pop.
The navigator to use for navigation. This is usually a history object or a custom navigator that implements the Navigator interface.
OptionalstaticWhether this router is static or not (used for SSR). If true, the router
will not be reactive to location changes.
Optionalunstable_Control whether router state updates are internally wrapped in
React.startTransition.
undefined, all router state updates are wrapped in
React.startTransitiontrue, Link and Form navigations will be wrapped
in React.startTransition and all router state updates are wrapped in
React.startTransitionfalse, the router will not leverage React.startTransition
on any navigations or state changes.For more information, please see the docs.