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