sdy

create MenuBar.js

1 +import React from "react";
2 +import styled from "styled-components";
3 +import TitleBox from "./TitleBox";
4 +import MenuIcons from "./MenuIcons";
5 +
6 +const MenuBar = styled.div`
7 + height: 100%;
8 + display: flex;
9 + flex-direction: column;
10 + justify-content: center;
11 + align-items: center;
12 + padding: 20px 10px;
13 + box-shadow: 1px 1px 10px #8395a7;
14 + background-color: #667aff;
15 +`;
16 +
17 +export default () => {
18 + return (
19 + <MenuBar>
20 + <TitleBox />
21 + <MenuIcons />
22 + </MenuBar>
23 + );
24 +};