/* @flow */ import React, { Component } from 'react'; import { translate } from '../../base/i18n'; import { CHROME, FIREFOX } from './browserLinks'; /** * The namespace of the CSS styles of UnsupportedDesktopBrowser. * * @private * @type {string} */ const _SNS = 'unsupported-desktop-browser'; /** * The type of the React {@code Component} props of * {@link UnsupportedDesktopBrowser}. */ type Props = { /** * The function to translate human-readable text. */ t: Function }; /** * React component representing unsupported browser page. * * @class UnsupportedDesktopBrowser */ class UnsupportedDesktopBrowser extends Component { /** * Renders the component. * * @returns {ReactElement} */ render() { return (

It looks like you're using a browser we don't support.

Please try again with the latest version of  Chrome and  Firefox

); } } export default translate(UnsupportedDesktopBrowser);