/** * Confirm Popup handler * * @author Rai Icasiano */ window.ConfirmModal = React.createClass({ getInitialState: function () { return { confirmModal: this.props.getConfirmModal, confirmModalAction: this.props.getConfirmModalAction, confirmModalErrorMessage: this.props.getConfirmModalErrorMessage } }, closeModal: function () { this.props.setConfirmModal(false); }, render: function () { return (
{this.state.confirmModalErrorMessage()}

  
); } });