Skip to content

Instantly share code, notes, and snippets.

@zaydek-old
Created August 6, 2019 13:37
Show Gist options
  • Save zaydek-old/6141c34a28c43d1cc694c6b4f53a4745 to your computer and use it in GitHub Desktop.
Save zaydek-old/6141c34a28c43d1cc694c6b4f53a4745 to your computer and use it in GitHub Desktop.
let Fragment = <React.Fragment />
for (const item of ["hello,", "world!"]) {
let El = (
<p>
{!item ? <br /> : item}
</p>
)
Fragment = (
<Fragment>
<El />
</Fragment>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment