Created
August 6, 2019 13:49
-
-
Save zaydek-old/64f1c928fef9b6d2aa363a61ce20ef65 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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