changing folder name

This commit is contained in:
talksik
2022-03-17 15:28:44 -04:00
parent 4a6b4deec5
commit 453121c987
26 changed files with 0 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { nirvanaApi } from "./nirvanaApi";
import { useQuery } from "react-query";
export enum Querytypes {
GET_USER_DETAILS = "GET_USER_DETAILS",
}
export function useGetUserDetails() {
return useQuery(Querytypes.GET_USER_DETAILS, nirvanaApi.getUserDetails, {
retry: true,
});
}