Created
November 8, 2018 10:51
-
-
Save spyl94/af60ee54b2222f3854fa5eabbdb4e634 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
<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