create project

This commit is contained in:
hamid zarghami
2026-07-09 11:42:41 +03:30
parent 21a99d9ec1
commit b0737ea6ad
6 changed files with 245 additions and 23 deletions
@@ -0,0 +1,7 @@
import axios from "../../../../config/axios";
import { CreateProjectType } from "../types/ProjectTypes";
export const createProject = async (params: CreateProjectType) => {
const { data } = await axios.post(`/task-manager/projects`, params);
return data;
};