UNPKG

beautiful-react-hooks

Version:

A collection of beautiful (and hopefully useful) React hooks to speed-up your components and hooks development

6 lines (5 loc) 158 B
/** * A quick and simple utility for toggle states */ declare const useToggle: (initialState?: boolean) => [boolean, () => void]; export default useToggle;