Add Logout page

This commit is contained in:
Michael Fatemi 2021-04-10 23:10:32 -04:00
parent d75bc53eaf
commit 422f745b7e
2 changed files with 5 additions and 0 deletions

View File

@ -16,6 +16,7 @@ import Main from './components/Main';
import './App.css';
import Authenticator from './components/Authenticator';
import AuthenticationWrapper from './components/AuthenticationWrapper';
import Logout from './components/Logout';
function App() {
return (
@ -33,6 +34,7 @@ function App() {
<Route component={Pool} path="/pools/:id" />
<Route component={Groups} path="/groups" />
<Route component={Profile} path="/profile" />
<Route component={Logout} path="/logout" />
<Route component={Home} path="/" />
</Switch>
</BrowserRouter>

View File

@ -0,0 +1,3 @@
export default function PoolMap() {
//
}