9 lines
116 B
TypeScript
9 lines
116 B
TypeScript
export default function NewProjectLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return children;
|
|
}
|
|
|