type Props = { title: string; }; export function CardSectionHeader({ title }: Readonly) { return (

{title}

); }