use-object
v1.0.2
Published
A custom React hook that lets you manipulate an object data structure.
Downloads
47
Readme
use-object
A custom React hook that lets you manipulate an array data structure without ever needing extra utilities.
Start with:
npm install --save use-object
Then, import and use the hook:
import useMap from 'use-object'
// …in your functional component:
const [ map, { get, set, update, getIn, remove, replace } ] = useMap(initialMap);
Docs
The complete documentation as well as a live demo is available here.
License
MIT © filipdanic
Related
If you like use-object
you might find use-array useful as well.