Fixing more bugs with call setup

This commit is contained in:
Robert Long
2021-07-22 16:41:57 -07:00
parent 69810ea54c
commit 7010120c11
2 changed files with 41 additions and 13 deletions

View File

@@ -512,5 +512,10 @@ function Participant({ participant }) {
}
}, [participant.feed]);
return <video ref={videoRef}></video>;
return (
<div>
{participant.userId}
<video ref={videoRef}></video>
</div>
);
}