Showing
1 changed file
with
2 additions
and
2 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 "../Routes/MenuList/MenuBar"; | 3 | +import Menu from "../Routes/Menu/MenuPresenter"; |
4 | import HomeMain from "./Home/HomeMain"; | 4 | import HomeMain from "./Home/HomeMain"; |
5 | import { Helmet } from "react-helmet"; | 5 | import { Helmet } from "react-helmet"; |
6 | 6 | ||
... | @@ -18,7 +18,7 @@ export default () => { | ... | @@ -18,7 +18,7 @@ export default () => { |
18 | <title>Home</title> | 18 | <title>Home</title> |
19 | </Helmet> | 19 | </Helmet> |
20 | <HomeContainer> | 20 | <HomeContainer> |
21 | - <MenuBar /> | 21 | + <Menu /> |
22 | <HomeMain /> | 22 | <HomeMain /> |
23 | </HomeContainer> | 23 | </HomeContainer> |
24 | </> | 24 | </> | ... | ... |
-
Please register or login to post a comment