"use client"; // TODO: Needs a complete rework to use the DaisyUI component import React, { useRef, useState } from "react"; import { ModalStatus } from "@/types"; import { FormRefMethods } from "../ModalSignIn/ModalSignInForm"; import Icon from "@/components/icon"; function ModalSignUp() { const formRef = useRef(null); const handleCloseModal = () => { if (formRef.current) { formRef.current.resetForm(); } }; return ( <> ); } export default ModalSignUp;