sdy

create Grid.js

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 +};