beta/app/w/[workspaceID]/p/[projectID]/layout.tsx
Christopher Arraya 53c3cd3d6e initial commit
2023-11-04 14:57:25 -04:00

4 lines
112 B
TypeScript

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