Skip to content

Instantly share code, notes, and snippets.

@velopert
Last active January 14, 2017 14:26
Embed
What would you like to do?
import React from 'react';
import { Link } from 'react-router';
import './Header.css';
const MenuItem = ({active, children, to}) => (
<Link to={to} className="menu-item">
{children}
</Link>
)
const Header = () => {
return (
<div>
<div className="logo">
velopert
</div>
<div className="menu">
<MenuItem to={'/'}>홈</MenuItem>
<MenuItem to={'/about'}>소개</MenuItem>
<MenuItem to={'/post'}>포스트</MenuItem>
</div>
</div>
);
};
export default Header;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment