Single route configuration

interface RouteProps {
    allRolesRequired?: boolean;
    caseSensitive?: boolean;
    element?: ReactNode;
    fallback?: Partial<Pick<FallbackProps, "Suspense" | "InvalidRoles">> & {
        route?: string;
    };
    handle?: any;
    index?: boolean;
    path?: string;
    roles?: string[];
    routes?: RouteProps[];
}

Hierarchy

  • Pick<RouteObject, "index" | "path" | "element" | "caseSensitive" | "handle">
    • RouteProps

Properties

allRolesRequired?: boolean

If set to true - user must have all roles from route.roles Array. If set to false - user must have at least one role from route.roles Array.

Default

to false

caseSensitive?: boolean
element?: ReactNode
fallback?: Partial<Pick<FallbackProps, "Suspense" | "InvalidRoles">> & {
    route?: string;
}

Route fallback definitions

Type declaration

  • Optional route?: string

    Fallback route (applied for private or public routes)

handle?: any
index?: boolean
path?: string
roles?: string[]

Array of roles that protects the route. If not provided, then the page can be accessed by users without roles.

routes?: RouteProps[]

Nested routes definitions

Generated using TypeDoc