/* @flow */ import React, { Component } from 'react'; import { HideNotificationBarStyle } from '../../base/react'; declare var interfaceConfig: Object; /** * React component representing no mobile app page. * * @class NoMobileApp */ export default class NoMobileApp extends Component<*> { /** * Renders the component. * * @returns {ReactElement} */ render() { const ns = 'no-mobile-app'; return (

Video chat isn't available on mobile.

Please use { interfaceConfig.NATIVE_APP_NAME } on desktop to join calls.

); } }