mirror of
https://github.com/dathere/ckanaction.git
synced 2026-07-05 17:12:19 +00:00
11 lines
327 B
TypeScript
11 lines
327 B
TypeScript
import { DocsLayout } from 'fumadocs-ui/layouts/docs';
|
|
import { baseOptions } from '@/lib/layout.shared';
|
|
import { source } from '@/lib/source';
|
|
|
|
export default function Layout({ children }: LayoutProps<'/docs'>) {
|
|
return (
|
|
<DocsLayout tree={source.pageTree} {...baseOptions()}>
|
|
{children}
|
|
</DocsLayout>
|
|
);
|
|
}
|