Last active
February 2, 2022 16:53
-
-
Save nabanita-sarkar/222fd5b3b0495be7311108143e91409b 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 { id } = useParams(); // from react-router | |
const { isLoading, isError, data } = useQuery( | |
["todo/detail", id], | |
() => { | |
return axios.get(`http://localhost:4000/todo/detail/:${id}`); | |
}, | |
{ | |
enabled: !!id, | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment