feat: signout

This commit is contained in:
Kyle Gill
2019-03-26 20:42:23 -06:00
parent e6e187645e
commit 8f13a5c1f1
5 changed files with 25 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
import React from "react";
import { Link } from "react-router-dom";
import SignOut from "../SignOut";
const Navbar = () => (
<div>
@@ -16,6 +17,9 @@ const Navbar = () => (
<li>
<Link to={"/register"}>Register</Link>
</li>
<li>
<SignOut />
</li>
</ul>
</div>
);