diff options
| author | Wes Bos <wesbos@gmail.com> | 2018-09-24 22:22:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-24 22:22:20 -0400 |
| commit | e5c642acb761b24c37d74bd094227895ae634445 (patch) | |
| tree | bd20bc4f7aa86f84652d287fe191b1ea909ddaac /stepped-solutions/08/frontend/components/Nav.js | |
| parent | 64d0e7a6e36229f17b3eaef712f3d641b5b895ee (diff) | |
| parent | 299af12f4985080b4f5d54b31e62b467d1462e45 (diff) | |
Merge pull request #26 from jameygleason/master
Stepped Solutions 07, 08, 09
Diffstat (limited to 'stepped-solutions/08/frontend/components/Nav.js')
| -rwxr-xr-x | stepped-solutions/08/frontend/components/Nav.js | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/stepped-solutions/08/frontend/components/Nav.js b/stepped-solutions/08/frontend/components/Nav.js index 0bd20b7..a821bc1 100755 --- a/stepped-solutions/08/frontend/components/Nav.js +++ b/stepped-solutions/08/frontend/components/Nav.js @@ -1,14 +1,24 @@ import Link from 'next/link'; +import NavStyles from './styles/NavStyles'; const Nav = () => ( - <div> + <NavStyles> + <Link href="/items"> + <a>Items</a> + </Link> <Link href="/sell"> - <a>Sell!</a> + <a>Sell</a> + </Link> + <Link href="/signup"> + <a>Signup</a> + </Link> + <Link href="/orders"> + <a>Orders</a> </Link> - <Link href="/"> - <a>Home!</a> + <Link href="/me"> + <a>Account</a> </Link> - </div> + </NavStyles> ); export default Nav; |
