import type { PropsWithChildren } from "react"; interface PanelProps extends PropsWithChildren { title: string; } export function Panel({ title, children }: PanelProps) { return (
{title}
{children}
); }