JSFiddle - React, Tailwind, and code Playground
by Vince
HTML
<div id="tiles-container">
</div>
SASS
html,body{background-color: #fff}
#tiles-container {
width: 1200px;
height:900px;
background-color: rgba(orange, 0.1);
display: grid;
}
Babel + JSX
let tile_generator = () => {
let totalTiles = 5
let dimensions = {width:300,height:300}
}
/* tile_generator() */