From 3a1baf2caa3602f34109793d6e896d7053668200 Mon Sep 17 00:00:00 2001 From: minhd-vu Date: Sun, 25 Feb 2024 00:13:16 -0500 Subject: [PATCH] update players ui --- components/Party.tsx | 46 ++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 42 insertions(+), 4 deletions(-) diff --git a/components/Party.tsx b/components/Party.tsx index 08d291f..8e86291 100644 --- a/components/Party.tsx +++ b/components/Party.tsx @@ -63,10 +63,48 @@ export default function Party() { const players = party.players.map((player) => (
  • -

    - {player.name} - {party.adminId === player.id && } -

    +
    +
    + {player.name} + {party.adminId === player.id && } +
    +
    + + +
    +
  • ));