--- // src/components/Timeline.astro interface Props { eras: { id: string; title: string; }[]; } const { eras } = Astro.props; ---
{ eras.map((era) => ( )) }