Fallback component, rendered if user does not have required role to visit the route (configurable globally and at route level)
const fallback: FallbackProps = {
InvalidRoles: (route) => <>User has no access to {route.path}, required roles are: {JSON.stringify(route.roles)}</>
}
Fallback for lazy loaded routes (configurable globally and at route level)
const fallback: FallbackProps = {
Suspense: <>...loading...<>
}
Unauthorized users on private routes will be redirected to this route
common[0].path ?? '/'
Authorized users on public routes will be redirected to this route
common[0].path ?? '/'
Generated using TypeDoc
Globally configured fallback properties (can be configured at route level as well)