Skip to content

Instantly share code, notes, and snippets.

@zaydek-old
Created August 6, 2019 13:49
Show Gist options
  • Save zaydek-old/64f1c928fef9b6d2aa363a61ce20ef65 to your computer and use it in GitHub Desktop.
Save zaydek-old/64f1c928fef9b6d2aa363a61ce20ef65 to your computer and use it in GitHub Desktop.
const Fragment = props => (
<>
{["hello", "world"].map((item, index) => (
<p key={index}>
{!item ? <br /> : item}
</p>
))}
</>
)
return (
<>
<Fragment />
</>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment