mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-06 13:52:44 +02:00
9 lines
No EOL
169 B
TypeScript
9 lines
No EOL
169 B
TypeScript
export default async function Layout({
|
|
params,
|
|
children
|
|
}: {
|
|
params: Promise<{ projectId: string }>
|
|
children: React.ReactNode
|
|
}) {
|
|
return children;
|
|
} |