flockstr/app/(landing)/layout.tsx

10 lines
182 B
TypeScript
Raw Normal View History

2023-10-13 19:02:59 -04:00
import LandingLayout from "./_layout";
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return <LandingLayout>{children}</LandingLayout>;
}