source: imaps-frontend/node_modules/react-use/lib/usePrevious.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 301 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var react_1 = require("react");
4function usePrevious(state) {
5 var ref = react_1.useRef();
6 react_1.useEffect(function () {
7 ref.current = state;
8 });
9 return ref.current;
10}
11exports.default = usePrevious;
Note: See TracBrowser for help on using the repository browser.