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.

NoMobileApp.js 779B

12345678910111213141516171819202122232425262728293031323334
  1. /* @flow */
  2. import React, { Component } from 'react';
  3. declare var interfaceConfig: Object;
  4. /**
  5. * React component representing no mobile app page.
  6. *
  7. * @class NoMobileApp
  8. */
  9. export default class NoMobileApp extends Component {
  10. /**
  11. * Renders the component.
  12. *
  13. * @returns {ReactElement}
  14. */
  15. render() {
  16. const ns = 'no-mobile-app';
  17. return (
  18. <div className = { ns }>
  19. <h2 className = { `${ns}__title` }>
  20. Video chat isn't available in the mobile apps
  21. </h2>
  22. <p className = { `${ns}__description` }>
  23. Video chat isn't available on mobile
  24. Desktop to join calls.
  25. </p>
  26. </div>
  27. );
  28. }
  29. }