export const Card = ({ title, body }: { title: string; body: string }) => (

{title}

{body}

)