2023-10-07 06:10:50 +00:00
|
|
|
import axios from "axios";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function sendContactFormRequest(body: {
|
|
|
|
|
|
|
|
contact: string;
|
|
|
|
whoami: string;
|
|
|
|
}) {
|
2023-10-07 11:11:03 +00:00
|
|
|
return axios("https://squiz.pena.digital/feedback/callme", {
|
2023-10-07 06:10:50 +00:00
|
|
|
method: "POST",
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
data: body,
|
|
|
|
});
|
|
|
|
}
|