18 lines
348 B
TypeScript
18 lines
348 B
TypeScript
|
import axios from "axios";
|
||
|
|
||
|
|
||
|
const apiUrl = "https://admin.pena.digital/feedback";
|
||
|
|
||
|
export function sendContactFormRequest(body: {
|
||
|
|
||
|
contact: string;
|
||
|
whoami: string;
|
||
|
}) {
|
||
|
return axios(apiUrl + "/callme", {
|
||
|
method: "POST",
|
||
|
headers: {
|
||
|
"Content-Type": "application/json",
|
||
|
},
|
||
|
data: body,
|
||
|
});
|
||
|
}
|