import React from 'react'; import { LocalizerType } from '../../types/Util'; import { SessionHtmlRenderer } from './SessionHTMLRenderer'; interface Props { i18n: LocalizerType; showSubtitle?: boolean; } export class AccentText extends React.PureComponent { constructor(props: any) { super(props); } public render() { const { showSubtitle, i18n } = this.props; return (
{showSubtitle ? (
) : ( '' )}
); } }