const ITEMS = [ { id: 'a', title: 'Alpha card' }, { id: 'b', title: 'Beta card' }, { id: 'c', title: 'Gamma card' }, ]; export default function App() { return (

Three cards rendered from a single mapped template.

{ITEMS.map((item) => (

{item.title}

Body for {item.id}.

))}
); }