Some checks failed
Deploy to Cloudflare Workers / deploy (push) Has been cancelled
17 lines
472 B
TypeScript
17 lines
472 B
TypeScript
import { Sidebar } from "./Sidebar";
|
|
import { YaltopiaFooter } from "./YaltopiaFooter";
|
|
|
|
export function AppShell({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="flex min-h-screen flex-col">
|
|
<div className="flex flex-1">
|
|
<Sidebar />
|
|
<div className="flex flex-1 flex-col">
|
|
<main className="flex-1 p-6">{children}</main>
|
|
<YaltopiaFooter />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|