Closed eduskx closed 3 months ago
Great work. LGTM! Only one note: The wireframe suggests that in addition to the search (input field), filtering by category (by clicking) is also possible, but this does not seem to be part of this ticket, so adjust the wireframe if necessary.
Value proposition
As a DIY enthusiast I want to search for projects In order to find projects I'm interested in
Description
Acceptance criteria
Tasks
feature/searchbar
branchSearchBar
componentconst [searchInput, setSearchInput] = useState("")
function inputHandler (event) { const lowerCasedInput = event.target.value.toLowerCase(); setSearchInput(lowerCasedInput) };