frontAnswerer/src/api/contactForm.ts

17 lines
414 B
TypeScript
Raw Normal View History

2023-12-16 14:55:56 +00:00
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,
});
}