react-application-core
Version:
A react-based application core for the business applications.
12 lines (11 loc) • 393 B
TypeScript
/// <reference types="react" />
import { IInfoComponentProps } from '../../definition';
import { GenericComponent } from '../base/generic.component';
export declare class Info extends GenericComponent<IInfoComponentProps> {
static readonly defaultProps: IInfoComponentProps;
/**
* @stable [03.04.2020]
* @returns {JSX.Element}
*/
render(): JSX.Element;
}