Files
flatrender/src/app/layout.tsx
T

11 lines
312 B
TypeScript
Raw Normal View History

/**
* Root layout — minimal pass-through.
* The actual HTML structure (lang, dir, fonts) lives in [locale]/layout.tsx.
* This file exists only because Next.js requires a root layout.tsx.
*/
2026-05-21 12:17:29 +03:30
export default function RootLayout({
children,
}: Readonly<{ children: React.ReactNode }>) {
return children;
2026-05-21 12:17:29 +03:30
}