export default function Card({ title = 'Title', data = 'Data' }) { return (

{title}

{data}

); }