display score user

This commit is contained in:
hamid zarghami
2025-12-13 12:47:02 +03:30
parent ca566546c2
commit 51f246897d
4 changed files with 33 additions and 3 deletions
@@ -7,3 +7,10 @@ export const useGetMyCoupons = () => {
queryFn: api.getMyCoupons,
});
};
export const useGetUserWallet = () => {
return useQuery({
queryKey: ["user-wallet"],
queryFn: api.getUserWallet,
});
};