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