Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
students
bora-it
Commits
5eb8bad9
Commit
5eb8bad9
authored
Aug 06, 2021
by
Kim, Chaerin
Browse files
add key
parent
a27376e3
Changes
1
Show whitespace changes
Inline
Side-by-side
client/src/components/Home/RoomSingle.js
View file @
5eb8bad9
...
...
@@ -14,7 +14,7 @@ const INIT_ROOM = {
const
RoomSingle
=
()
=>
{
const
[
room
,
setRoom
]
=
useState
([
INIT_ROOM
]);
const
[
error
,
setError
]
=
useState
(
""
);
const
channelId
=
'
main
'
;
const
channelId
=
"
main
"
;
const
{
roomId
}
=
useParams
(
room
.
roomId
);
async
function
getJoinRoom
(
Id
)
{
try
{
...
...
@@ -45,10 +45,13 @@ const RoomSingle = () => {
{
room
&&
room
.
map
((
el
)
=>
(
<
div
>
{
room
[
0
]
===
INIT_ROOM
?
(
<
div
><
/div>
)
:
(
{
room
[
0
]
===
INIT_ROOM
?
(
<
div
><
/div
>
)
:
(
<
Link
to
=
{
`/room/
${
el
.
roomId
}
/
${
channelId
}
`
}
className
=
"
text-decoration-none text-dark
"
key
=
{
el
.
roomId
}
>
<
div
className
=
"
d-flex mx-4 my-2 p-2
"
...
...
@@ -74,7 +77,8 @@ const RoomSingle = () => {
<
/div
>
<
div
className
=
"
ms-auto mt-2
"
>
{
el
.
member
}
/100 </
div
>
<
/div
>
<
/Link>
)
}
<
/Link
>
)}
<
/div
>
))}
<
/div
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment