9 lines
254 B
TypeScript
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);
|
|
}
|