Skip to content
Snippets Groups Projects
layout.tsx 233 B
"use client"

export default function DashboardLayout({
    children,
}: {
    children: React.ReactNode;
}) {
    return (
        <section>
            <div>
                {children}
            </div>
        </section>
    );
}