import React, { Component } from 'react'; /** * Array of all supported browsers. */ const SUPPORTED_BROWSERS = [ { link: 'http://google.com/chrome', name: 'chrome', plugin: false, title: 'Chrome 44+' }, { link: 'http://www.chromium.org/', name: 'chromium', plugin: false, title: 'Chromium 44+' }, { link: 'http://www.opera.com', name: 'opera', plugin: false, title: 'Opera 32+' }, { link: 'http://www.getfirefox.com/', name: 'firefox', plugin: false, title: 'Firefox and Iceweasel 40+' }, { link: 'https://temasys.atlassian.net/wiki/display/TWPP/WebRTC+Plugins', name: 'ie', plugin: 'Temasys 0.8.854+', title: 'IE' }, { link: 'https://temasys.atlassian.net/wiki/display/TWPP/WebRTC+Plugins', name: 'safari', plugin: 'Temasys 0.8.854+', title: 'Safari' } ]; /** * React component representing unsupported browser page. * * @class UnsupportedBrowserPage */ export default class UnsupportedBrowserPage extends Component { /** * Renders the component. * * @returns {ReactElement} */ render() { return (
({ browser.plugin })
; } return (