Showing
1 changed file
with
0 additions
and
26 deletions
front/src/Components/Home.js
deleted
100644 → 0
1 | -import React from "react"; | ||
2 | -import styled from "styled-components"; | ||
3 | -import Menu from "../Routes/Menu/MenuContainer"; | ||
4 | -import HomeMain from "./Home/HomeMain"; | ||
5 | -import { Helmet } from "react-helmet"; | ||
6 | - | ||
7 | -const HomeContainer = styled.div` | ||
8 | - width: 100%; | ||
9 | - display: flex; | ||
10 | - flex-direction: row; | ||
11 | - overflow: hidden; | ||
12 | -`; | ||
13 | - | ||
14 | -export default () => { | ||
15 | - return ( | ||
16 | - <> | ||
17 | - <Helmet> | ||
18 | - <title>Home</title> | ||
19 | - </Helmet> | ||
20 | - <HomeContainer> | ||
21 | - <Menu /> | ||
22 | - <HomeMain /> | ||
23 | - </HomeContainer> | ||
24 | - </> | ||
25 | - ); | ||
26 | -}; |
-
Please register or login to post a comment