diff --git a/frontend/components/ContactButton.tsx b/frontend/components/ContactButton.tsx new file mode 100644 index 00000000..3038dc75 --- /dev/null +++ b/frontend/components/ContactButton.tsx @@ -0,0 +1,14 @@ +import { FC } from "react"; +import Button from "./Button"; +import { CONTACT_MODAL_KEY } from "./ContactModal"; +import { useURLQueryModal } from "./Modal"; + +const ContactButton: FC = () => { + const modal = useURLQueryModal(CONTACT_MODAL_KEY); + + return ( +