Skip to content

Commit

Permalink
passing new NavBar tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukeghenco committed Mar 30, 2017
1 parent 1491574 commit 7f5c079
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/components/NavBar.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
import React from 'react';
import { NavLink } from 'react-router-dom';

const NavBar = () => {
return <div></div>;
return (
<div className="navbar">
<NavLink to="/">Home</NavLink>
<NavLink to="/movies">Movies</NavLink>
<NavLink to="/directors">Directors</NavLink>
<NavLink to="/actors">Actors</NavLink>
</div>
);
};

export default NavBar;

0 comments on commit 7f5c079

Please sign in to comment.