mirror of
https://github.com/SkalaraAI/skalara.git
synced 2025-04-09 15:10:16 -04:00
13 lines
181 B
TypeScript
13 lines
181 B
TypeScript
export default function WorkspaceLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<div>
|
|
<h1>Workspace Layout</h1>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|