Created
June 22, 2021 11:05
-
-
Save nabanita-sarkar/7bbf43c9d39bbe2f1e0d887914cfaa2f 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: isAllTodoLoading, | |
isError: isAllTodoError, | |
data: allTodo, | |
} = useQuery("todo/all", () => { | |
return axios.post("http://localhost:4000/todo/all", todo) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment