UNPKG

adaptiv-ui

Version:

a library of styled components with some global style overrides in sass

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]; };