--- interface Props { entries: { time: string; description: string }[]; } const { entries } = Astro.props; ---
{ entries.map((entry) => ( <>
{entry.time}
{entry.description}
)) }