minishouyin/node_modules/antd/es/_util/hooks/useSyncState.js
2025-11-12 11:35:57 +08:00

11 lines
330 B
JavaScript

import * as React from 'react';
import { useForceUpdate } from './useForceUpdate';
export const useSyncState = initialValue => {
const ref = React.useRef(initialValue);
const [, forceUpdate] = useForceUpdate();
return [() => ref.current, newValue => {
ref.current = newValue;
// re-render
forceUpdate();
}];
};