Repita un bloque tantas veces como un JSX Nember

const n = 8; // Or something else

[...Array(n)].map((e, i) => <span className="busterCards" key={i}>♦</span>)
Frail Finch