import React from 'react'; interface TmaCardProps { title: string; description?: string; children: React.ReactNode; } export default function TmaCard({ title, description, children }: TmaCardProps) { return (

{title}

{description &&

{description}

}
{children}
); }