@rxflow/base
Version:
BaseFlow - 核心 Flow 组件库
20 lines (18 loc) • 535 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.useForceUpdateTimes = void 0;
var _ = require("../..");
/**
* @author: yanxianliang
* @date: 2025-10-16 19:55
* @modified:2025/10/16 19:55 by yanxianliang
* @desc: 强制更新次数,用来监听触发强制更新逻辑
*
* Copyright (c) 2025 by yanxianliang, All Rights Reserved.
*/
const useForceUpdateTimes = () => {
return (0, _.useSelector)(state => state.forceRenderTimes);
};
exports.useForceUpdateTimes = useForceUpdateTimes;