UNPKG

shelving

Version:

Toolkit for using data in JavaScript.

6 lines (5 loc) 192 B
import { useRef } from "react"; /** Create a mutable Map that persists for the lifetime of the component. */ export function useMap() { return (useRef(undefined).current ??= new Map()); }