import React, { Component } from 'react'; import { WithTranslation } from 'react-i18next'; import { translate } from '../../base/i18n/functions'; /** * A component that renders the description of the notification for old Jitsi Meet Electron clients. * * @augments AbstractApp */ export class OldElectronAPPNotificationDescription extends Component { /** * Implements React's {@link Component#render()}. * * @inheritdoc * @returns {ReactElement} */ render() { const { t } = this.props; return (
{ t('notify.oldElectronClientDescription1') } { t('notify.oldElectronClientDescription2') } { t('notify.oldElectronClientDescription3') }
); } } export default translate(OldElectronAPPNotificationDescription);