Skip to content

Latest commit

 

History

History

boolean

🎒 @hooks/boolean

React hook to store a boolean

NPM version Travis License

Install

npm i @hooks/boolean

Usage

useBoolean

useBoolean(initialValue: boolean): [boolean, (nextValue?: boolean) => void]

Parameters

initialValue: boolean

The initial state for the value.

Return

Returns an array containing the value and a function to update it.