Showing
1 changed file
with
2 additions
and
4 deletions
1 | import React from "react"; | 1 | import React from "react"; |
2 | import styled from "styled-components"; | 2 | import styled from "styled-components"; |
3 | import MenuBar from "../Components/MenuList/MenuBar"; | 3 | import MenuBar from "../Components/MenuList/MenuBar"; |
4 | -import SubMenuBar from "../Components/SubMenuList/SubMenuBar"; | 4 | +import HomeMain from "../Components/Home/HomeMain"; |
5 | -import MainScreen from "../Components/Main/MainScreen"; | ||
6 | 5 | ||
7 | const HomeContainer = styled.div` | 6 | const HomeContainer = styled.div` |
8 | width: 100%; | 7 | width: 100%; |
... | @@ -16,8 +15,7 @@ export default () => { | ... | @@ -16,8 +15,7 @@ export default () => { |
16 | <> | 15 | <> |
17 | <HomeContainer> | 16 | <HomeContainer> |
18 | <MenuBar /> | 17 | <MenuBar /> |
19 | - <SubMenuBar /> | 18 | + <HomeMain /> |
20 | - <MainScreen /> | ||
21 | </HomeContainer> | 19 | </HomeContainer> |
22 | </> | 20 | </> |
23 | ); | 21 | ); | ... | ... |
-
Please register or login to post a comment