10 lines
182 B
TypeScript
10 lines
182 B
TypeScript
import LandingLayout from "./_layout";
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <LandingLayout>{children}</LandingLayout>;
|
|
}
|