import type { FunctionComponent } from "react"; import { useRef } from "react"; import Modal, { ModalTitle } from "app/core/components/modal"; type Props = { isHelpModalOpen: boolean; closeModal: () => void; }; const HelpModal: FunctionComponent = ({ isHelpModalOpen, closeModal }) => { const modalCloseButtonRef = useRef(null); return (
Need help finding your Twilio credentials?

You can check out our{" "} getting started {" "} guide to set up your account with your Twilio credentials.

If you feel stuck, pick a date & time on{" "} our calendly {" "} and we will help you get started!

Don't miss out on free $10 Twilio credit by using{" "} our referral link .

); }; export default HelpModal;