mirror of
https://github.com/dathere/ckanaction.git
synced 2025-11-09 22:19:49 +00:00
6 lines
239 B
TypeScript
6 lines
239 B
TypeScript
import { HomeLayout } from 'fumadocs-ui/layouts/home';
|
|
import { baseOptions } from '@/lib/layout.shared';
|
|
|
|
export default function Layout({ children }: LayoutProps<'/'>) {
|
|
return <HomeLayout {...baseOptions()}>{children}</HomeLayout>;
|
|
}
|