Advertisement
ListonFermi

Boarding Week 1 Practical Workouts- React

Aug 13th, 2024
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. import { useState } from "react"
  2.  
  3. function App() {
  4.  
  5. const c = ['India', 'Bangladesh', 'SriLanka', 'China']
  6.  
  7. const [countries, setCountries] = useState(c)
  8. const [keyword, setKeyword] = useState('')
  9.  
  10. function handleChange(e) {
  11. console.log(e.target.value)
  12. setKeyword(e.target.value)
  13. }
  14.  
  15. function handleSearch(e) {
  16. e.preventDefault()
  17. const searchedCountry = countries.filter(country => country === keyword)
  18. setCountries(searchedCountry)
  19. }
  20.  
  21. return <>
  22. <input type="text" value={keyword} onChange={handleChange} />
  23. <button onClick={handleSearch} >Search</button>
  24. {countries.map((country, i) => <h1 key={i}>{country}</h1>)}
  25. </>
  26. }
  27.  
  28. export default App
  29.  
  30.  
  31. // const [] = useCountry('Asia')
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement