import type { ReactNode } from "react"; type Props = { title: string; actions?: ReactNode; children: ReactNode; }; export default function DetailSection({ title, actions, children }: Props) { return (

{title}

{actions}
{children}
); }