mirror of
https://github.com/katanemo/plano.git
synced 2026-07-02 15:51:02 +02:00
12 lines
206 B
TypeScript
12 lines
206 B
TypeScript
|
|
export default function StudioLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}) {
|
||
|
|
return (
|
||
|
|
<div className="fixed inset-0 h-screen w-screen overflow-hidden">
|
||
|
|
{children}
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|