react-application-core
Version:
A react-based application core for the business applications.
17 lines (16 loc) • 549 B
TypeScript
/// <reference types="react" />
import { GenericContainer } from '../../base/generic.container';
import { IUnsavedFormChangesDialogContainerProps } from '../../../definition';
/**
* @component-container-impl
* @stable [15.06.2020]
*
* Please use the "Mappers.unsavedFormChangesDialogContainerProps"
*/
export declare class UnsavedFormChangesDialogContainer extends GenericContainer<IUnsavedFormChangesDialogContainerProps> {
/**
* @stable [15.06.2020]
* @returns {JSX.Element}
*/
render(): JSX.Element;
}