• Component to mount application routes, can be used anywhere in your application. The important thing is to render it under a AuthReactRouter provider

    Example

    const App = () => {
    return (
    <AuthReactRouter routes={routes} authorized={authorized}>
    <Header />
    <Layout>
    <RoutesRoot />
    </Layout>
    </AuthReactRouter>
    );
    }

    Parameters

    • props: unknown

    Returns ReactNode

Properties

$$typeof: symbol
displayName?: string
type: (() => Element)

Type declaration

    • (): Element
    • Returns Element

Generated using TypeDoc