skalara/app/workspace/[workspaceID]/layout.tsx
Christopher Arraya f98072c7cf initial commit
2023-09-16 23:15:44 -04:00

13 lines
181 B
TypeScript

export default function WorkspaceLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div>
<h1>Workspace Layout</h1>
{children}
</div>
);
}