Props of the RouterProvider component.

interface RouterProviderProps {
    children?: ReactNode;
    value: Router<any>;
}

Properties

Properties

children?: ReactNode

Children rendered by the router. An Outlet is rendered by default.

value: Router<any>

A router instance that populates the nested Outlet.