UNPKG

bushido-strap

Version:

a library of styled components with material theme

12 lines (8 loc) 211 B
import { useState } from "react"; export const useModal = () => { const [isShowing, setIsShowing] = useState(false); function toggle() { setIsShowing(!isShowing); } return [isShowing, toggle]; };