JSFiddle - React, Tailwind, and code Playground
by TigerAsks
JavaScript
const init = () => {
const container = document.querySelector('.container')
for(const i of Array(70).keys()){
const square = document.createElement('div')
square.classList.add('square')
container.appendChild(square)
}
}
init()