Files
vibn-frontend/app/[workspace]/new-project/new/layout.tsx

9 lines
116 B
TypeScript

export default function NewProjectLayout({
children,
}: {
children: React.ReactNode;
}) {
return children;
}