report bug

This commit is contained in:
hamid zarghami
2025-08-23 09:52:58 +03:30
parent 27ea922168
commit 27eb5af7fd
17 changed files with 301 additions and 65 deletions
+7
View File
@@ -0,0 +1,7 @@
import axios from "@/config/axiosDanak";
import { FeedbackType } from "../types/Types";
export const sendFeedback = async (params: FeedbackType) => {
const { data } = await axios.post("/danak-services/feedback", params);
return data;
};