Component to mount application routes, can be used anywhere in your application. The important thing is to render it under a AuthReactRouter provider
AuthReactRouter
const App = () => { return ( <AuthReactRouter routes={routes} authorized={authorized}> <Header /> <Layout> <RoutesRoot /> </Layout> </AuthReactRouter> );} Copy
const App = () => { return ( <AuthReactRouter routes={routes} authorized={authorized}> <Header /> <Layout> <RoutesRoot /> </Layout> </AuthReactRouter> );}
Readonly
Optional
Generated using TypeDoc
Component to mount application routes, can be used anywhere in your application. The important thing is to render it under a
AuthReactRouter
providerExample