Last active
August 7, 2019 08:33
-
-
Save indreklasn/2b0473bf4f141766dac3cebbe4fa0121 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
if (data && data.length > 0) { | |
data.map(item => <div>{item}<div>) | |
} | |
/* or */ | |
data && data.length > 0 && data.map(item => <div>{item}<div>) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This might be a bit better :)