Update LineDetails.tsx

This commit is contained in:
talksik
2022-05-19 18:40:55 -05:00
parent 258eb48a43
commit 22b115fdfe
@@ -215,7 +215,14 @@ function StreamPlayer({ peerStream }: { peerStream: MediaStream }) {
return (
<>
this is a stream component of one remote peer
<video ref={streamRef} height={400} width={400} className={'shadow-xl'} autoPlay muted />
<video
ref={streamRef}
height={400}
width={400}
className={'shadow-xl rounded'}
autoPlay
muted
/>
</>
);
}