import React from 'react'; interface Props { titleText: string; messageText: string; okText: string; cancelText: string; onConfirm: any; onClose: any; } export class ConfirmDialog extends React.Component { constructor(props: any) { super(props); } public render() { return (

{this.props.titleText}

{this.props.messageText}

); } }