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