4 lines
116 B
TypeScript

export default async function MainLayout({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}