import { PropsWithChildren, ReactNode } from "react"; type PanelProps = PropsWithChildren<{ title: string; subtitle?: string; actions?: ReactNode; }>; export default function Panel({ title, subtitle, actions, children }: PanelProps) { return (

{title}

{subtitle ?

{subtitle}

: null}
{actions}
{children}
); }