flockstr/app/(landing)/layout.tsx
2023-10-13 19:02:59 -04:00

10 lines
182 B
TypeScript

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