UNPKG

@liveblocks/react-ui

Version:

A set of React pre-built components for the Liveblocks products. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.

13 lines (10 loc) 225 B
import { useReducer } from 'react'; function useRerender() { const [key, update] = useReducer( (key2) => key2 + 1, 0 ); return [update, key]; } export { useRerender }; //# sourceMappingURL=use-rerender.js.map