@octopusdeploy/design-system-components
Version:
The design systems component library.
12 lines (11 loc) • 326 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.useLatest = void 0;
const react_1 = require("react");
const useLatest = (value) => {
const ref = (0, react_1.useRef)(value);
ref.current = value;
return ref;
};
exports.useLatest = useLatest;
exports.default = exports.useLatest;