mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
439 B
439 B
useMap
React state hook that tracks a value of an object.
Usage
import {useMap} from 'react-use';
const Demo = () => {
const [map, {set, reset}] = useMap({
hello: 'there',
});
return (
<div>
<pre>{JSON.stringify(map, null, 2)}</pre>
<button onClick={() => set(String(Date.now()), (new Date()).toJSON())}>Add</button>
<button onClick={() => reset()}>Reset</button>
</div>
);
};