diff --git a/webui/src/pages/GameCreation/components/InfoArea/InfoArea.jsx b/webui/src/pages/GameCreation/components/InfoArea/InfoArea.jsx index 17c0712..ac48a17 100644 --- a/webui/src/pages/GameCreation/components/InfoArea/InfoArea.jsx +++ b/webui/src/pages/GameCreation/components/InfoArea/InfoArea.jsx @@ -3,7 +3,7 @@ import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"; import {faUser, faUserGroup} from "@fortawesome/free-solid-svg-icons"; import Member from "@/pages/GameCreation/components/InfoArea/components/Member"; -export const InfoArea = () => { +export const InfoArea = ({members}) => { return (
@@ -19,9 +19,9 @@ export const InfoArea = () => {
- - - + {members.map((member) => ( + + ))}