/* @flow */ import React from 'react'; import { getConferenceName } from '../../../base/conference/functions'; import { connect } from '../../../base/redux'; import { Tooltip } from '../../../base/tooltip'; type Props = { /** * The conference display name. */ _subject: string } /** * Label for the conference name. * * @param {Props} props - The props of the component. * @returns {ReactElement} */ const SubjectText = ({ _subject }: Props) => (