UNPKG

react-application-core

Version:

A react-based application core for the business applications.

20 lines (19 loc) 534 B
/// <reference types="react" /> import { IMainProps } from '../../definition'; import { EnhancedGenericComponent } from '../base/enhanced-generic.component'; /** * @component-impl * @stable [22.05.2020] */ export declare class Main extends EnhancedGenericComponent<IMainProps> { /** * @stable [22.05.2020] * @returns {JSX.Element} */ render(): JSX.Element; /** * @stable [02.06.2020] * @returns {IMainProps} */ protected get componentsSettingsProps(): IMainProps; }