Files
jitsi-meet/react/features/invite/components/dial-in-summary/native/DialInSummaryErrorDialog.js

30 lines
719 B
JavaScript
Raw Normal View History

2019-05-07 16:50:57 +02:00
// @flow
import React, { Component } from 'react';
import { connect } from 'react-redux';
2019-05-07 16:50:57 +02:00
2023-03-31 14:04:33 +03:00
import AlertDialog from '../../../../base/dialog/components/native/AlertDialog';
2019-05-07 16:50:57 +02:00
import { translate } from '../../../../base/i18n';
/**
* Dialog to inform the user that we couldn't fetch the dial-in info page.
2019-05-07 16:50:57 +02:00
*/
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));