2024-02-19 08:39:35 +00:00
|
|
|
'use client'
|
|
|
|
|
|
|
|
|
|
import { HumasLayout } from "@/components/layout/HumasLayout";
|
|
|
|
|
|
2024-01-05 06:57:30 +00:00
|
|
|
export default function DocsLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
2024-02-19 08:39:35 +00:00
|
|
|
<HumasLayout>
|
|
|
|
|
{children}
|
|
|
|
|
</HumasLayout>
|
2024-01-05 06:57:30 +00:00
|
|
|
);
|
|
|
|
|
}
|