Skip to content

Instantly share code, notes, and snippets.

View JustEugen's full-sized avatar

Yevhen Kazmirchuk JustEugen

  • Crosswatch.info
View GitHub Profile
@JustEugen
JustEugen / interview-react.1.jsx
Created January 30, 2022 11:10
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>
)
}