mirror of
https://github.com/mgerb/react-starter
synced 2026-01-09 16:42:48 +00:00
21 lines
602 B
JavaScript
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,
|
|
}; |