• Internal

    The root layout component that wraps all pages with the base layout and renders the route outlet.

    Returns Element

    export function Root() {
    return (
    <BaseLayout>
    <Outlet />
    </BaseLayout>
    );
    }