mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
16 lines
253 B
JavaScript
16 lines
253 B
JavaScript
import { useState } from 'react';
|
|
|
|
const useModal = () => {
|
|
const [isVisible, setIsVisible] = useState(false);
|
|
|
|
function toggleModal() {
|
|
setIsVisible(!isVisible);
|
|
}
|
|
|
|
return {
|
|
isVisible,
|
|
toggleModal,
|
|
};
|
|
};
|
|
|
|
export default useModal;
|