UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

4 lines (3 loc) 197 B
type Updater<ValueType> = (prev?: ValueType) => ValueType; export default function useFrameState<ValueType>(defaultValue: ValueType): [ValueType, (updater: Updater<ValueType>) => void]; export {};