HashRouter
On this page

HashRouter

Summary

Reference Documentation ↗

A declarative <Router> that stores the location in the hash portion of the URL so it is not sent to the server.

Signature

function HashRouter({
  basename,
  children,
  unstable_useTransitions,
  window,
}: HashRouterProps)

Props

basename

Application basename

children

<Route> components describing your route configuration

unstable_useTransitions

Control whether router state updates are internally wrapped in React.startTransition.

  • When left undefined, all router state updates are wrapped in React.startTransition
  • When set to true, Link and Form navigations will be wrapped in React.startTransition and all router state updates are wrapped in React.startTransition
  • When set to false, the router will not leverage React.startTransition on any navigations or state changes.

For more information, please see the docs.

window

Window object override. Defaults to the global window instance

Docs and examples CC 4.0
Edit