import { ComponentChildren } from "preact"; import { menu } from "@lib/menus.ts"; export type Props = { children: ComponentChildren; title?: string; name?: string; url: URL; description?: string; }; export const MainLayout = ({ children, url }: Props) => { return (
{children}
); };