import React from 'react'; interface CardProps { title?: string; children: React.ReactNode; } export function Card({ title, children }: CardProps) { return (
{title && (

{title}

)} {children}
); }