import "./LobbyPage.scss"; const LobbyPage = () => { const userNames = ["Laura", "Miguel", "David"]; return (

Trains And Roads

{userNames.map((name) => (
{name}
))}
); }; export default LobbyPage;