mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
|
import * as React from 'react';
|
||
|
|
||
|
export default function useForceUpdate() {
|
||
|
const [, forceUpdate] = React.useReducer(x => x + 1, 0);
|
||
|
return forceUpdate;
|
||
|
}
|