create bill water

This commit is contained in:
hamid zarghami
2026-02-17 09:21:57 +03:30
parent 6238e3e1a7
commit 8eabcf419e
12 changed files with 300 additions and 98 deletions
+8
View File
@@ -0,0 +1,8 @@
import { useMutation } from "@tanstack/react-query";
import * as api from "../service/Service";
export const useCreateBill = () => {
return useMutation({
mutationFn: api.createBill,
});
};