interface CardProps { title?: string widthClass?: string children: React.ReactNode } function Card({title, widthClass='w-fit', children}: CardProps) { return (
{ title &&

{title}

} {children}
); } export default Card;