useMap
Custom hook that manages a key-value [
Map](https://developer.Installation
npx sse-tool add use-map
npm install sse-hooks
Usage
import { useMap } from "./{hooks file}";
const [map, mapActions] = useMap();
// Access the `map` state and use `mapActions` to set, remove, or reset entries.
import { useMap } from "sse-hooks";
const [map, mapActions] = useMap();
// Access the `map` state and use `mapActions` to set, remove, or reset entries.
API
Parameters
| Name | Type | Description |
|---|---|---|
| initialState | MapOrEntries | The initial state of the map as a Map or an array of key-value pairs (optional). |
Return Value
Returns UseMapReturn.
A tuple containing the map state and actions to interact with the map.