/* @flow */ import React, { Component } from 'react'; import { CHROME, CHROMIUM, FIREFOX } from './browserLinks'; /** * React component representing plugin installation required page. * * @class PluginRequiredBrowser */ export default class PluginRequiredBrowser extends Component<*> { /** * Renders the component. * * @returns {ReactElement} */ render() { const ns = 'unsupported-desktop-browser'; const nsLink = `${ns}__link`; return (

Your browser requires a plugin for this conversation.

Once you install the plugin, it will be possible for you to have your conversation here. For the best experience, however, we strongly recommend that you do that using the  ChromeChromium or  Firefox browsers.

); } }