import { ComponentChildren } from "preact"; export type Props = { children: ComponentChildren; title?: string; name?: string; description?: string; }; export const MainLayout = ({ children }: Props) => { return ( <>
{children}
); };