Skip to content

Instantly share code, notes, and snippets.

@velopert
Last active January 14, 2017 14:25
Show Gist options
  • Save velopert/7e6612133fd211c45e9658e682ceefea to your computer and use it in GitHub Desktop.
Save velopert/7e6612133fd211c45e9658e682ceefea to your computer and use it in GitHub Desktop.
import React from 'react';
import './Header.css';
const MenuItem = ({active, children, to}) => (
<div className="menu-item">
{children}
</div>
)
const Header = () => {
return (
<div>
<div className="logo">
velopert
</div>
<div className="menu">
<MenuItem></MenuItem>
<MenuItem>소개</MenuItem>
<MenuItem>포스트</MenuItem>
</div>
</div>
);
};
export default Header;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment