From 422f745b7e7b6363f0a6516677d359a8f51317f3 Mon Sep 17 00:00:00 2001 From: Michael Fatemi Date: Sat, 10 Apr 2021 23:10:32 -0400 Subject: [PATCH] Add Logout page --- src/App.tsx | 2 ++ src/components/PoolMap.tsx | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 src/components/PoolMap.tsx diff --git a/src/App.tsx b/src/App.tsx index 1308770..552fad2 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -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() { + diff --git a/src/components/PoolMap.tsx b/src/components/PoolMap.tsx new file mode 100644 index 0000000..516299f --- /dev/null +++ b/src/components/PoolMap.tsx @@ -0,0 +1,3 @@ +export default function PoolMap() { + // +}