getting rid of files

This commit is contained in:
talksik
2022-03-17 11:02:08 -04:00
parent e631a47149
commit 4a6b4deec5
35 changed files with 0 additions and 863 deletions
-14
View File
@@ -1,14 +0,0 @@
import { useMutation, useQuery } from "react-query";
import axios from "axios";
import { nirvanaApi } from "./nirvanaApi";
export enum Querytypes {
GET_USER_DETAILS = "GET_USER_DETAILS",
}
export function useGetUserDetails() {
return useQuery(Querytypes.GET_USER_DETAILS, nirvanaApi.getUserDetails, {
retry: true,
});
}