diff --git a/src/components/media-elements/videos/video/index.tsx b/src/components/media-elements/videos/video/index.tsx index f1b3cf28..fb865866 100644 --- a/src/components/media-elements/videos/video/index.tsx +++ b/src/components/media-elements/videos/video/index.tsx @@ -6,14 +6,20 @@ import PinWebcam from './pinWebcam'; import MicStatus from './micStatus'; import ConnectionStatus from './connectionStatus'; import { sleep } from '../../../../helpers/utils'; +import Participant from './participant'; export interface IVideoComponentProps { userId: string; + name: string; + isLocal: boolean; track: RemoteTrackPublication | LocalTrackPublication; displayPinIcon: boolean; } + const VideoComponent = ({ userId, + name, + isLocal, track, displayPinIcon, }: IVideoComponentProps) => { @@ -43,27 +49,30 @@ const VideoComponent = ({ }; return ( -