13 lines
338 B
TypeScript
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}</>;
|
|
}
|