frontPanel/src/api/contactForm.ts
2023-12-31 05:53:25 +03:00

20 lines
395 B
TypeScript

import axios from "axios";
const domen =
window.location.hostname === "localhost"
? "squiz.pena.digital"
: window.location.hostname;
export function sendContactFormRequest(body: {
contact: string;
whoami: string;
}) {
return axios(`https://${domen}/feedback/callme`, {
method: "POST",
headers: {
"Content-Type": "application/json",
},
data: body,
});
}