DEV Community

Discussion on: Creating custom hook for fetching data in react

Collapse
 
jatinhemnani01 profile image
Jatin Hemnani • Edited

const { isLoading, serverError, apiData } = useFetch(
"https://jsonplaceholder.typicode.com/posts/1"
);

How can I append list (the apiData)? like concating with other list for infinite scrolling n all.
Would really like to know
Thanks