Created
July 10, 2020 06:43
-
-
Save mcjcloud/5a032a65fcceaa0229085db3ee13278b to your computer and use it in GitHub Desktop.
Asterisk Medium Article: new JSX
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
{/* complete items */} | |
{completeTodos.length > 0 && ( | |
<> | |
<div className={classes.header}> | |
<Typography component="h6" variant="h4">Completed Items</Typography> | |
</div> | |
{completeTodos.map(todo => ( | |
<div key={todo._id} className={classes.todoItem}> | |
<IconButton color="inherit" onClick={() => uncheckTodo(todo)}> | |
<ClearIcon /> | |
</IconButton> | |
<span>{todo.label}</span> | |
</div> | |
))} | |
</> | |
)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment