Create Charge

This commit is contained in:
hamid zarghami
2026-02-17 09:47:20 +03:30
parent 8eabcf419e
commit af718809cb
6 changed files with 127 additions and 5 deletions
+6
View File
@@ -6,3 +6,9 @@ export const useCreateBill = () => {
mutationFn: api.createBill,
});
};
export const useCreateCharge = () => {
return useMutation({
mutationFn: api.createChargeBill,
});
};