Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
Triz_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
sdy
2020-05-20 01:53:28 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3159b81487ee95e996cd50ce5ed32bb599ef98a4
3159b814
1 parent
42c0d3ba
rename variables
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
front/src/Components/RoomList.js
front/src/Components/RoomList.js
View file @
3159b81
...
...
@@ -18,7 +18,7 @@ const Wrapper = styled.div`
padding: 0.5rem 0.7rem 0 1rem;
`
;
const
Channel
Container
=
styled
.
div
`
const
Room
Container
=
styled
.
div
`
display: flex;
flex-direction: column;
width: 100%;
...
...
@@ -42,7 +42,7 @@ const ChannelContainer = styled.div`
}
`
;
const
Channel
List
=
styled
.
ul
`
const
Room
List
=
styled
.
ul
`
width: 100%;
display: flex;
flex-direction: row;
...
...
@@ -53,7 +53,7 @@ const ChannelList = styled.ul`
}
`
;
const
Channel
Item
=
styled
.
li
`
const
Room
Item
=
styled
.
li
`
font-family: "Ubuntu", sans-serif;
`
;
...
...
@@ -95,17 +95,17 @@ export default () => {
return
(
<
Router
>
<
Wrapper
>
<
Channel
Container
>
<
Channel
List
>
<
Room
Container
>
<
Room
List
>
<
StyledLink
to
=
"/"
>
<
ChannelItem
>
First
Channel
<
/Channel
Item
>
<
RoomItem
>
First
Room
<
/Room
Item
>
<
FontAwesomeIcon
icon
=
{
faArrowRight
}
/
>
<
/StyledLink
>
<
/
Channel
List
>
<
/
Channel
Container
>
<
/
Room
List
>
<
/
Room
Container
>
<
CreateContainer
>
<
StyledLink
to
=
"/"
>
<
span
>
Create
New
Channel
<
/span
>
<
span
>
Create
New
Room
<
/span
>
<
/StyledLink
>
<
/CreateContainer
>
<
/Wrapper
>
...
...
Please
register
or
login
to post a comment