rn: add DialInSummary

This commit is contained in:
Bettenbuk Zoltan
2019-05-07 16:50:57 +02:00
committed by Zoltan Bettenbuk
parent 7e9df74e60
commit 86d0d4fc22
31 changed files with 351 additions and 53 deletions

View File

@@ -0,0 +1,29 @@
// @flow
import React, { Component } from 'react';
import { AlertDialog } from '../../../../base/dialog';
import { translate } from '../../../../base/i18n';
import { connect } from '../../../../base/redux';
/**
* Dialog to inform the user that we could't fetch the dial-in info page.
*/
class DialInSummaryErrorDialog extends Component<{}> {
/**
* Implements React's {@link Component#render()}.
*
* @inheritdoc
* @returns {ReactElement}
*/
render() {
return (
<AlertDialog
contentKey = 'info.dialInSummaryError' />
);
}
_onSubmit: () => boolean;
}
export default translate(connect()(DialInSummaryErrorDialog));