submit review

This commit is contained in:
hamid zarghami
2025-12-08 12:11:09 +03:30
parent 1522adf388
commit 6eb390e60c
8 changed files with 213 additions and 68 deletions
@@ -0,0 +1,7 @@
import { api } from "@/config/axios";
import { CreateRateType } from "../types/Types";
export const createRate = async (params: CreateRateType) => {
const { data } = await api.post("/public/reviews", params);
return data;
};