6 lines
183 B
TypeScript
6 lines
183 B
TypeScript
// app/(builder)/builder/layout.tsx
|
|
import type { ReactNode } from "react";
|
|
|
|
export default function BuilderLayout({ children }: { children: ReactNode }) {
|
|
return <>{children}</>;
|
|
} |