import type { FunctionComponent } from "react"; import { useRef } from "react"; import Modal, { ModalTitle } from "../../settings/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!

); }; export default HelpModal;