// looping over 10 times in react <div> {[...Array(10)].map((x, i) => { return <p key={i}>Hello</p>; })} </div>