Version: v4.4.0use-map-stateAbout#A react hook to manage state in a key value pair map.Installation#npm install --save @rooks/use-map-stateCopyImporting the hook#import useMapState from "@rooks/use-map-state"CopyUsage#function Demo() { const [map, {set, setMultiple, has, remove, removeMultiple, removeAll}] = useMapState({a:1,b:2}); return null} render(<Demo/>)CopyCodesandbox Examples#Basic Usage#Join Bhargav's discord server#You can click on the floating discord icon at the bottom right of the screen and talk to us in our server.