1.0.0 • Published 3 years ago

react-switch-state v1.0.0

Weekly downloads
41
License
MIT
Repository
github
Last release
3 years ago

react-switch-state

React hook for switching state on and off

Install

npm install react-switch-state

Usage

import useSwitchState from 'react-switch-state'

const { value, setValue, switchOn, switchOff, switchOnOff } = useSwitchState()

API

Return Type

value

type boolean

This is the value of the state

setValue

type (value: boolean) => void

This function is used to change the state value

switchOn

type () => void

This is used for changing the state value to true

switchOff

type () => void

This is used for changing the state value to false

switchOnOff

type () => void

This is used for toggling the state value from true to false and vice versa

Parameters

default value

type boolean or undefined

This is the default value that will be used for the state value.

1.0.0

3 years ago