You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DialInSummaryErrorDialog.tsx 750B

1234567891011121314151617181920212223242526
  1. import React, { Component } from 'react';
  2. import { WithTranslation } from 'react-i18next';
  3. import { connect } from 'react-redux';
  4. import AlertDialog from '../../../../base/dialog/components/native/AlertDialog';
  5. import { translate } from '../../../../base/i18n/functions';
  6. /**
  7. * Dialog to inform the user that we couldn't fetch the dial-in info page.
  8. */
  9. class DialInSummaryErrorDialog extends Component<WithTranslation> {
  10. /**
  11. * Implements React's {@link Component#render()}.
  12. *
  13. * @inheritdoc
  14. * @returns {ReactElement}
  15. */
  16. render() {
  17. return (
  18. <AlertDialog
  19. contentKey = 'info.dialInSummaryError' />
  20. );
  21. }
  22. }
  23. export default translate(connect()(DialInSummaryErrorDialog));