Showing
1 changed file
with
9 additions
and
9 deletions
... | @@ -18,7 +18,7 @@ const Wrapper = styled.div` | ... | @@ -18,7 +18,7 @@ const Wrapper = styled.div` |
18 | padding: 0.5rem 0.7rem 0 1rem; | 18 | padding: 0.5rem 0.7rem 0 1rem; |
19 | `; | 19 | `; |
20 | 20 | ||
21 | -const ChannelContainer = styled.div` | 21 | +const RoomContainer = styled.div` |
22 | display: flex; | 22 | display: flex; |
23 | flex-direction: column; | 23 | flex-direction: column; |
24 | width: 100%; | 24 | width: 100%; |
... | @@ -42,7 +42,7 @@ const ChannelContainer = styled.div` | ... | @@ -42,7 +42,7 @@ const ChannelContainer = styled.div` |
42 | } | 42 | } |
43 | `; | 43 | `; |
44 | 44 | ||
45 | -const ChannelList = styled.ul` | 45 | +const RoomList = styled.ul` |
46 | width: 100%; | 46 | width: 100%; |
47 | display: flex; | 47 | display: flex; |
48 | flex-direction: row; | 48 | flex-direction: row; |
... | @@ -53,7 +53,7 @@ const ChannelList = styled.ul` | ... | @@ -53,7 +53,7 @@ const ChannelList = styled.ul` |
53 | } | 53 | } |
54 | `; | 54 | `; |
55 | 55 | ||
56 | -const ChannelItem = styled.li` | 56 | +const RoomItem = styled.li` |
57 | font-family: "Ubuntu", sans-serif; | 57 | font-family: "Ubuntu", sans-serif; |
58 | `; | 58 | `; |
59 | 59 | ||
... | @@ -95,17 +95,17 @@ export default () => { | ... | @@ -95,17 +95,17 @@ export default () => { |
95 | return ( | 95 | return ( |
96 | <Router> | 96 | <Router> |
97 | <Wrapper> | 97 | <Wrapper> |
98 | - <ChannelContainer> | 98 | + <RoomContainer> |
99 | - <ChannelList> | 99 | + <RoomList> |
100 | <StyledLink to="/"> | 100 | <StyledLink to="/"> |
101 | - <ChannelItem>First Channel</ChannelItem> | 101 | + <RoomItem>First Room</RoomItem> |
102 | <FontAwesomeIcon icon={faArrowRight} /> | 102 | <FontAwesomeIcon icon={faArrowRight} /> |
103 | </StyledLink> | 103 | </StyledLink> |
104 | - </ChannelList> | 104 | + </RoomList> |
105 | - </ChannelContainer> | 105 | + </RoomContainer> |
106 | <CreateContainer> | 106 | <CreateContainer> |
107 | <StyledLink to="/"> | 107 | <StyledLink to="/"> |
108 | - <span>Create New Channel</span> | 108 | + <span>Create New Room</span> |
109 | </StyledLink> | 109 | </StyledLink> |
110 | </CreateContainer> | 110 | </CreateContainer> |
111 | </Wrapper> | 111 | </Wrapper> | ... | ... |
-
Please register or login to post a comment