Internal
The root layout component that wraps all pages with the base layout and renders the route outlet.
export function Root() { return ( <BaseLayout> <Outlet /> </BaseLayout> );} Copy
export function Root() { return ( <BaseLayout> <Outlet /> </BaseLayout> );}
The root layout component that wraps all pages with the base layout and renders the route outlet.