Skip to content

Instantly share code, notes, and snippets.

@moonformeli
Created May 18, 2017 05:14
Show Gist options
  • Save moonformeli/4b0f0b2c241d6e177afc29e781b081a3 to your computer and use it in GitHub Desktop.
Save moonformeli/4b0f0b2c241d6e177afc29e781b081a3 to your computer and use it in GitHub Desktop.
render_with_empty_defaultValues.js
render() {
return (
<ul>
{this.state && this.state.items && this.state.items.map(item =>
<li key={item.id}>{item.name}</li>
)}
</ul>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment