frontAnswerer/src/api/contactForm.ts
2023-12-16 17:55:56 +03:00

17 lines
414 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,
});
}