After user enters the search query in search box, i want the user to navigation to some other page, say "/market" component, with the search query, like this: https://localhost:8080/market?searchString=asdf. Can anyone please help me with this! I am not sure how to start with it.
<Search
onKeyPress={(event) => {
if (event.key === "Enter") {
this.onSearch(event.target.value);
}
}}
placeHolderText= "Search"
type="text"
/>
Method:
onSearch(searchString) {
if (searchString) {
//performSearch
}
}