antd
Version:
An enterprise-class UI design language and React components implementation
10 lines • 313 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;
forceUpdate();
}];
};