import React from 'react'; import classNames from 'classnames'; //import { LocalizerType } from '../../types/Util'; interface Props { //i18n: LocalizerType; // text: string; showSubtitle?: boolean; } export class AccentText extends React.PureComponent { constructor(props: any) { super(props); } public render() { const { showSubtitle } = this.props; return (
Begin
your
Session.
{showSubtitle ? (
Ensuring peace of{' '} mind, one session at a time.
) : ( '' )}
); } }