import type { Child } from "hono/jsx"; type LayoutProps = { title: string; children: Child; refresh?: string; }; export const Layout = ({ title, children, refresh }: LayoutProps) => ( {refresh && } {title}
{children}
);