layout.tsx 195 B

1234567891011
  1. 'use client';
  2. import Layout from '@/app/component/Layout';
  3. export default function MainLayout({ children }: { children: React.ReactNode }) {
  4. return (
  5. <Layout>
  6. {children}
  7. </Layout>
  8. );
  9. }