import { h } from 'preact'; import { format as formatDate, parseISO } from 'date-fns'; import './Card.css'; export default function Card({ item }) { return (
{item.img ? ( ) : (
)}

{item.title}

{item.date && ( )} {item.description && (

{item.description}

)}
); }