Skip to content

Instantly share code, notes, and snippets.

@mcjcloud
Created July 10, 2020 06:42
Show Gist options
  • Save mcjcloud/8a49c117234c24765642b479b7a89f71 to your computer and use it in GitHub Desktop.
Save mcjcloud/8a49c117234c24765642b479b7a89f71 to your computer and use it in GitHub Desktop.
Asterisk Medium Article: old JSX
{/* complete items */}
{completeTodos.length > 0 && (
<>
<div className={classes.header}>
<Typography component="h6" variant="h4">Completed Items</Typography>
</div>
{completeTodos.map(todo => (
<p key={todo._id}>{todo.label}</p>
))}
</>
)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment