diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index 03012e7..6360ab3 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -162,9 +162,53 @@ function UserRegistration(props: {setUserInfo: (u: UserInfo) => void}) { } function LobbyConnection() { + const [loading, setLoading] = createSignal(false); + + const joinLobby = (ev: Event) => { + ev.preventDefault(); + }; + + const createLobby = async() => { + // + setLoading(true); + }; + return ( -
- Lobby creation :D +
+

Join a lobby:

+ +
+ +
+ +
+ +
+ +

Create a new lobby:

+ + +
); }