How can I reformat this code to make it work better cause now its kind of terrible cause of debounce
Pastebin
import { createFileRoute, notFound, useNavigate } from "@tanstack/r...
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
1 Reply
compatible-crimson•16mo ago
Increase debounce time to at least 1 second. Make your
SearchInput
a separate component, so it doesn't rerender during the search. Also make a separate PetList
component and combine those 2 through parent like this
It's just a pseudo code to point you in the right direction, don't take it as is.
You may also make smth like this
And put all your pets' loading logic inside this component.