UNPKG

stackpress

Version:

Incept is a content management framework.

8 lines (7 loc) 186 B
import { useState } from 'react'; export function useToggle(ison = false) { const [on, isOn] = useState(ison); const toggle = () => isOn(on => !on); return [on, toggle]; } ;