Skip to content

Instantly share code, notes, and snippets.

@Violet-Bora-Lee
Created March 4, 2019 12:32
Show Gist options
  • Save Violet-Bora-Lee/38e2bb32a3fbefc61ce12cae2f620b74 to your computer and use it in GitHub Desktop.
Save Violet-Bora-Lee/38e2bb32a3fbefc61ce12cae2f620b74 to your computer and use it in GitHub Desktop.
<ul>
{users
.filter(user => user.age > 26)
.map(user => <li>{user.name}</li>)
}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment