Skip to content

Instantly share code, notes, and snippets.

@JustEugen
Created January 30, 2022 11:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JustEugen/0de2d5a89fbf5d417d73b271d27bbf48 to your computer and use it in GitHub Desktop.
Save JustEugen/0de2d5a89fbf5d417d73b271d27bbf48 to your computer and use it in GitHub Desktop.
Interview React - Filter users by user input
const users = [{id: 1, name: "John"}, {id: 2, name: "Smith"}, {id: 3, name: "Emily"}]
export const App = () => {
return (
<div>
<input />
<button>Search</button>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment