web-humas-fe/app/docs/layout.tsx

16 lines
227 B
TypeScript
Raw Permalink Normal View History

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
);
}