import React from "react";
import {DOMAIN} from "./utils";
export function DomainedEmail({address}) {
const target = `${address}@${DOMAIN}`;
return {target}
}
export const DomainedRFQMessages = {
OK: <>We've received your request and will be in contact soon.>,
ERROR: <>We cannot receive your request. Try using the export by coping the configuration and send it to us at >
}