UNPKG

yqcloud-ui

Version:

An enterprise-class UI design language and React-based implementation

14 lines (13 loc) 413 B
/// <reference types="react" /> import * as React from 'react'; export interface ILazyRenderBoxPropTypes { className?: string; visible?: boolean; hiddenClassName?: string; role?: string; style?: {}; } export default class LazyRenderBox extends React.Component<ILazyRenderBoxPropTypes, any> { shouldComponentUpdate(nextProps: ILazyRenderBoxPropTypes): boolean; render(): JSX.Element; }