|
import React from 'react';
|
|
import styled from 'styled-components';
|
|
|
|
const Nav = styled.div`{
|
|
background-color:#fff;
|
|
padding:20px 30px;
|
|
border-bottom:1px solid #eee;
|
|
font-size:16px;
|
|
color:#333;
|
|
}`
|
|
|
|
export default (({children})=>{
|
|
return(
|
|
<Nav>{children}</Nav>
|
|
)
|
|
}) |