mirror of
https://github.com/docmost/docmost.git
synced 2025-11-14 01:11:11 +10:00
14 lines
347 B
TypeScript
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>
|
|
);
|
|
}
|