sdy

rename file

...@@ -5,7 +5,7 @@ import { faPlusCircle } from "@fortawesome/free-solid-svg-icons"; ...@@ -5,7 +5,7 @@ import { faPlusCircle } from "@fortawesome/free-solid-svg-icons";
5 import SearchBox from "./SearchBox"; 5 import SearchBox from "./SearchBox";
6 import ChatListBox from "./ChatListBox"; 6 import ChatListBox from "./ChatListBox";
7 7
8 -const SubMenuBar = Styled.div` 8 +const FriendsList = Styled.div`
9 width: 30%; 9 width: 30%;
10 height: 100%; 10 height: 100%;
11 display:flex; 11 display:flex;
...@@ -27,7 +27,7 @@ const PlusIconBox = Styled.div` ...@@ -27,7 +27,7 @@ const PlusIconBox = Styled.div`
27 27
28 export default () => { 28 export default () => {
29 return ( 29 return (
30 - <SubMenuBar> 30 + <FriendsList>
31 <SearchBox /> 31 <SearchBox />
32 <ChatListBox /> 32 <ChatListBox />
33 <ChatListBox /> 33 <ChatListBox />
...@@ -35,6 +35,6 @@ export default () => { ...@@ -35,6 +35,6 @@ export default () => {
35 <PlusIconBox> 35 <PlusIconBox>
36 <FontAwesomeIcon icon={faPlusCircle} /> 36 <FontAwesomeIcon icon={faPlusCircle} />
37 </PlusIconBox> 37 </PlusIconBox>
38 - </SubMenuBar> 38 + </FriendsList>
39 ); 39 );
40 }; 40 };
......