UNPKG

@darwish/hooks-core

Version:

13 lines (12 loc) 373 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var react_1 = require("react"); var useFirstMountState = function () { var firstStateRef = (0, react_1.useRef)(true); if (firstStateRef.current) { firstStateRef.current = false; return true; } return firstStateRef.current; }; exports.default = useFirstMountState;