aboutsummaryrefslogtreecommitdiffstats
path: root/src/App.tsx
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2020-10-06 14:48:49 +0100
committerGravatar GitHub <[email protected]>2020-10-06 14:48:49 +0100
commite06b2c25844f315954caae5ed1bc5782f4b81c86 (patch)
treee3e865836765be4f5f1b03572626e7c56c3effc2 /src/App.tsx
parentMerge pull request #18 from python-discord/react/add-list-key (diff)
parentRe-add the OAuth2 button to the home page (diff)
Merge pull request #19 from python-discord/discord/add-oauth2-authorize
Add OAuth2 authorization
Diffstat (limited to 'src/App.tsx')
-rw-r--r--src/App.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/App.tsx b/src/App.tsx
index 3af6676..19ba6a6 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -12,12 +12,14 @@ import { CSSTransition, TransitionGroup } from "react-transition-group";
import LandingPage from "./pages/LandingPage";
import FormPage from "./pages/FormPage";
+import CallbackPage from "./pages/CallbackPage";
import globalStyles from "./globalStyles";
const routes = [
{ path: "/", Component: LandingPage },
- { path: "/form/:id", Component: FormPage}
+ { path: "/form/:id", Component: FormPage},
+ { path: "/callback", Component: CallbackPage }
]
function App() {