Skip to content

Instantly share code, notes, and snippets.

@birksy89
Last active October 14, 2020 13:38
Show Gist options
  • Save birksy89/93760c378c92966a0f4471818713bd36 to your computer and use it in GitHub Desktop.
Save birksy89/93760c378c92966a0f4471818713bd36 to your computer and use it in GitHub Desktop.
[...Array(10)].map((_, i) => {
return <ListGroupProduct key={i} />
})
// OR - Create 10 items from object
const item = {
clientQuote: "",
clientName: "",
clientOrganization: "",
clientLogo: "",
mediaFile: "",
}
const data = [...Array(10)].map(_ => item)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment