React
by brigand
HTML
<div id="app"></div>
React
function App() {
return Array.from({length: 1000}, (_, i) => i % 2 ? String(i) : <span> </span>)
}
ReactDOM.render(<App />, document.querySelector("#app"))
by brigand
<div id="app"></div>
function App() {
return Array.from({length: 1000}, (_, i) => i % 2 ? String(i) : <span> </span>)
}
ReactDOM.render(<App />, document.querySelector("#app"))