1
0
mirror of https://github.com/mgerb/react-starter synced 2026-01-09 16:42:48 +00:00
Files
react-starter/app/components/Navbar/Navbar.js
2017-03-29 18:08:19 -05:00

21 lines
602 B
JavaScript

import React from 'react';
import { Link } from 'react-router';
import './Navbar.scss';
export default class Navbar extends React.Component {
render() {
return (
<div className="Navbar">
<div className="Navbar__header">Title</div>
<Link to="/" className="Navbar__item" onlyActiveOnIndex activeClassName="Navbar__item--active">Home</Link>
<Link to="/new" className="Navbar__item" activeClassName="Navbar__item--active">New</Link>
</div>
);
}
}
Navbar.propTypes = {
children: React.PropTypes.node,
};