use-get-set-state

v4.7.0arrow_drop_down
v4.7.0
STATUS
Passing
DOWNLOADS
15
VISIBILITY
Public
PUBLISHED
6 years ago
SIZE
N/A
1 contributor
Install use-get-set-state as a package?
Copied
npm i @bit/giladshoham.react-hooks.use.use-get-set-state
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
chevron_left
chevron_right

useGetSetState

A mix of useGetSet and useGetSetState.

Usage

import {useGetSetState} from 'react-use';

const Demo = () => {
  const [get, setState] = useGetSetState({cnt: 0});
  const onClick = () => {
    setTimeout(() => {
      setState({cnt: get().cnt + 1})
    }, 1_000);
  };

  return (
    <button onClick={onClick}>Clicked: {get().cnt}</button>
  );
};
Help and resources