Skip to content

Instantly share code, notes, and snippets.

@mcjcloud
Created July 10, 2020 06:43
Show Gist options
  • Save mcjcloud/5a032a65fcceaa0229085db3ee13278b to your computer and use it in GitHub Desktop.
Save mcjcloud/5a032a65fcceaa0229085db3ee13278b to your computer and use it in GitHub Desktop.
Asterisk Medium Article: new JSX
{/* 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