Props for AuthReactRouter

interface AuthReactRouterProps {
    authorized?: boolean;
    children?: ReactNode;
    roles?: string[];
    routes: RoutesConfig;
}

Properties

authorized?: boolean

Authorization state of the user, if not provided only common routes will work correspondingly

children?: ReactNode
roles?: string[]

User roles

routes: RoutesConfig

Application routes definitions

Generated using TypeDoc