Files
docmost/apps/client/src/components/layouts/global/layout.tsx
Philipinho 06d854a7d2 refactor layout
* ui polishing
* frontend and backend fixes
2024-05-31 21:51:44 +01:00

14 lines
347 B
TypeScript

import { UserProvider } from "@/features/user/user-provider.tsx";
import { Outlet } from "react-router-dom";
import GlobalAppShell from "@/components/layouts/global/global-app-shell.tsx";
export default function Layout() {
return (
<UserProvider>
<GlobalAppShell>
<Outlet />
</GlobalAppShell>
</UserProvider>
);
}