changed styling of buttons
Signed-off-by: heyhiru <hirentimbadiya74@gmail.com>
Este commit está contenido en:
@@ -210,17 +210,6 @@ const RoomPage = () => {
|
|||||||
height={300}
|
height={300}
|
||||||
width={500}
|
width={500}
|
||||||
/>
|
/>
|
||||||
<div className='flex space-x-4 mt-4'>
|
|
||||||
<button className='joinButton' onClick={handleToggleAudio}>
|
|
||||||
{isAudioMute ? "Unmute" : "Mute"}
|
|
||||||
</button>
|
|
||||||
<button className='joinButton' onClick={handleToggleVideo}>
|
|
||||||
{isVideoOnHold ? "Resume Video" : "Hold Video"}
|
|
||||||
</button>
|
|
||||||
<button className='joinButton' onClick={handleEndCall}>
|
|
||||||
End Call
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
@@ -238,6 +227,20 @@ const RoomPage = () => {
|
|||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
{myStream &&
|
||||||
|
(
|
||||||
|
<div className='flex space-x-4 mt-4'>
|
||||||
|
<button className='joinButton' onClick={handleToggleAudio}>
|
||||||
|
{isAudioMute ? "Unmute" : "Mute"}
|
||||||
|
</button>
|
||||||
|
<button className='joinButton' onClick={handleToggleVideo}>
|
||||||
|
{isVideoOnHold ? "Resume Video" : "Hold Video"}
|
||||||
|
</button>
|
||||||
|
<button className='joinButton' onClick={handleEndCall}>
|
||||||
|
End Call
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Referencia en una nueva incidencia
Block a user