import React from 'react'; import cn from 'classnames'; import styles from 'Components/Session_/playerBlock.module.css'; import Player from './LivePlayerInst'; import SubHeader from './LivePlayerSubHeader'; interface IProps { fullView?: boolean; isMultiview?: boolean; } function LivePlayerBlock(props: IProps) { const { fullView = false, isMultiview } = props; const shouldShowSubHeader = !fullView && !isMultiview; return (
{shouldShowSubHeader ? : null}
); } export default LivePlayerBlock;