Skip to content

Instantly share code, notes, and snippets.

@jafstar
Created February 10, 2019 19:24
Show Gist options
  • Save jafstar/b50a90e48cfd7b20bee110a86eb41893 to your computer and use it in GitHub Desktop.
Save jafstar/b50a90e48cfd7b20bee110a86eb41893 to your computer and use it in GitHub Desktop.
React make box matrix
{Array(10).fill(
<div className={styles.dash_row}>
{Array(35).fill(
<div className={styles.dash_cell}></div>
)
}
</div>
)
}
Array.from(Array(10)).map((item,idx) => {
console.log(idx);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment