florian-padel

Results 3 comments of florian-padel

This repo only supports typescript version ~3.7.2 and the latest is 4.7.4

@KumarilDave Just add a search bar in your component with this logic ```Typescript const [search, setSearch] = useState("") const onSearchChange(e: ChangeEvent) { setSearch(e.target.value) } useEffect(() => { if (search ===...