10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
|
export const sendContactForm = async (data: any) =>
|
||
|
fetch("/api/contact", {
|
||
|
method: "POST",
|
||
|
body: JSON.stringify(data),
|
||
|
headers: {
|
||
|
"Content-Type": "application/json",
|
||
|
Accept: "application/json",
|
||
|
},
|
||
|
});
|