UNPKG

@vis.gl/react-google-maps

Version:

React components and hooks for the Google Maps JavaScript API

8 lines (5 loc) 160 B
import {useReducer} from 'react'; export function useForceUpdate(): () => void { const [, forceUpdate] = useReducer(x => x + 1, 0); return forceUpdate; }