sdy

create MenuList component

1 +import React from "react";
2 +import Styled from "styled-components";
3 +
4 +const MenuBox = Styled.div`
5 + width: 30%;
6 + display: flex;
7 + justify-content: center;
8 + align-items: center;
9 + margin-top: 10px;
10 + border-top: 1px solid black;
11 + border-right: 1px solid black;
12 +`;
13 +
14 +const MenuList = Styled.ol`
15 +`;
16 +
17 +const MenuItem = Styled.li`
18 +`;
19 +
20 +const Link = Styled.a`
21 +`;
22 +
23 +export default () => {
24 + return (
25 + <MenuBox>
26 + <MenuList>
27 + <MenuItem>
28 + <Link href="">1. What is KHU Chat?</Link>
29 + </MenuItem>
30 + </MenuList>
31 + </MenuBox>
32 + );
33 +};