use-modal.ts 242 B

12345678910111213
  1. import { useState } from 'react';
  2. const useModal = () => {
  3. let [showModal, setShowModal] = useState(false);
  4. let handleModal = () => {
  5. setShowModal(!showModal);
  6. };
  7. return { showModal, handleModal };
  8. };
  9. export default useModal;