mirror of
https://github.com/docmost/docmost.git
synced 2026-05-17 23:14:07 +08:00
06d854a7d2
* ui polishing * frontend and backend fixes
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>
|
|
);
|
|
}
|