Showing
1 changed file
with
4 additions
and
8 deletions
1 | import React from "react"; | 1 | import React from "react"; |
2 | -import styled from "styled-components"; | ||
3 | import Header from "../../Components/Header"; | 2 | import Header from "../../Components/Header"; |
4 | - | 3 | +import Main from "../../Components/Main"; |
5 | -const MainWrapper = styled.div` | ||
6 | - display: flex; | ||
7 | - flex-direction: column; | ||
8 | -`; | ||
9 | 4 | ||
10 | export default () => { | 5 | export default () => { |
11 | return ( | 6 | return ( |
12 | - <MainWrapper> | 7 | + <> |
13 | <Header /> | 8 | <Header /> |
14 | - </MainWrapper> | 9 | + <Main /> |
10 | + </> | ||
15 | ); | 11 | ); |
16 | }; | 12 | }; | ... | ... |
-
Please register or login to post a comment