UNPKG

react-keep-alive

Version:

Package will allow components to maintain their status, to avoid repeated re-rendering.

10 lines (9 loc) 236 B
import * as React from 'react'; interface IKeepAliveProps { key?: string; name?: string; disabled?: boolean; extra?: any; } declare const _default: React.ComponentType<IKeepAliveProps>; export default _default;