create project
This commit is contained in:
@@ -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;
|
||||
};
|
||||
Reference in New Issue
Block a user