Toggle navigation
Toggle navigation
This project
Loading...
Sign in
강동현
/
nodejs-game
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Overnap
2021-06-09 21:06:05 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f0257b3d08a5aabe5bcaf60d24585fc4311b68f8
f0257b3d
1 parent
07481258
UserInfo의 UserStatus에 Key 추가
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
web/src/components/room/UserInfo.tsx
web/src/components/room/UserInfo.tsx
View file @
f0257b3
...
...
@@ -9,7 +9,7 @@ interface UserInfoProps {
export const UserInfo: React.FC<UserInfoProps> = ({ users }) => {
return (
<div className='w-7/12 h-60 flex justify-center'>
{users.map((user) => (<UserStatus user={user} />))}
{users.map((user) => (<UserStatus
key={user.username}
user={user} />))}
</div>
);
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment