This repository has been archived on 2026-06-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
master-ai/vibn-frontend/app/[workspace]/project/[projectId]/layout.tsx

13 lines
338 B
TypeScript

/**
* Passthrough layout for the project route.
*
* Two sibling route groups provide their own scaffolds:
* - (home)/ — Unified chat + artifact shell (preview, plan, etc.).
*/
import { ReactNode } from "react";
export default function ProjectRootLayout({ children }: { children: ReactNode }) {
return <>{children}</>;
}