UNPKG

187 BJavaScriptView Raw
1import { useState } from "react";
2
3export default function useToggle(init = false) {
4 const [show, set] = useState(init);
5 const toggle = () => set(v => !v);
6 return [show, toggle];
7}