layout.tsx 191 B

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