MIF_E31221222/sigap-website/app/_hooks/use-resend.ts

10 lines
156 B
TypeScript

import { Resend } from "resend";
export const useResend = () => {
const resend = new Resend(process.env.RESEND_API_KEY);
return {
resend,
};
};