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

27 lines
759 B
TypeScript
Raw Normal View History

2019-05-07 16:50:57 +02:00
import React, { Component } from 'react';
import { WithTranslation } from 'react-i18next';
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';
import { translate } from '../../../../base/i18n/functions';
2019-05-07 16:50:57 +02:00
/**
* 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<WithTranslation> {
2019-05-07 16:50:57 +02:00
/**
* Implements React's {@link Component#render()}.
*
* @inheritdoc
* @returns {ReactElement}
*/
override render() {
2019-05-07 16:50:57 +02:00
return (
<AlertDialog
contentKey = 'info.dialInSummaryError' />
);
}
}
export default translate(connect()(DialInSummaryErrorDialog));