Last active
February 2, 2022 16:52
-
-
Save nabanita-sarkar/6d230ea3712196c3c414758022f74473 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { isLoading, isError, data } = useQuery( | |
"todo/all", | |
() => { | |
return axios.get(`http://localhost:4000/todo/all`); | |
}, | |
{ | |
retry: 1, // or `true` or `false` or e.g. 6 | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment