Skip to content

Instantly share code, notes, and snippets.

@spyl94
Created November 8, 2018 10:51
Show Gist options
  • Save spyl94/af60ee54b2222f3854fa5eabbdb4e634 to your computer and use it in GitHub Desktop.
Save spyl94/af60ee54b2222f3854fa5eabbdb4e634 to your computer and use it in GitHub Desktop.
<div className="App">
<p className="my-component">Je suis mon premier composant</p>
<ul>
{this.state.todos.length > 0 &&
this.state.todos.map(todo => (
<li key={todo.id}>
{" "}
{todo.name} - {todo.dueDate.toLocaleString()}{" "}
</li>
))}
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment