improved style & turned off remaining sockets

Signed-off-by: heyhiru <hirentimbadiya74@gmail.com>
Este commit está contenido en:
heyhiru
2023-11-12 23:32:37 +05:30
padre 344def7e45
commit ccc4a52324
Se han modificado 3 ficheros con 55 adiciones y 45 borrados

Ver fichero

@@ -28,9 +28,9 @@ const LobbyScreen = () => {
}, [socket, handleJoinRoom]);
return (
<div className='flex flex-col items-center justify-center'>
<h1 className=' font-semibold mb-5 mt-5 '>Lobby</h1>
<div>
<div className='flex flex-col items-center justify-center h-screen bg-gray-100'>
<h1 className='text-3xl font-semibold mb-5 mt-5 '>Lobby</h1>
<div className='bg-white p-6 rounded shadow-md'>
<form className='flex flex-col items-center justify-center'
onSubmit={handleSubmitForm}
>
@@ -52,7 +52,7 @@ const LobbyScreen = () => {
onChange={(e) => setRoom(e.target.value)}
/>
<br />
<button className='joinButton'>
<button className='bg-blue-500 hover:bg-blue-600'>
Join
</button>
</form>