system-praktyk-front/src/api/report.ts
2021-01-11 23:03:25 +01:00

9 lines
254 B
TypeScript

import { Report, ReportFieldValues } from "@/data/report";
import { axios } from "@/api/index";
const REPORT_SAVE_ENDPOINT = "/internship/report"
export async function save(report: Report) {
await axios.post(REPORT_SAVE_ENDPOINT, report.fields);
}