8 lines
295 B
TypeScript
8 lines
295 B
TypeScript
import type { ReactNode } from "react";
|
|
|
|
// Root layout delegates rendering of <html>/<body> to app/[locale]/layout.tsx.
|
|
// This file exists only to satisfy Next.js's requirement for a root layout.
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
|
return children;
|
|
}
|