diff options
author | 2020-10-06 14:38:00 +0100 | |
---|---|---|
committer | 2020-10-06 14:38:00 +0100 | |
commit | 078d06a2fbbb6984359884ba48edeaf09c13e6dd (patch) | |
tree | 1985d2300c461f1ae4a44084278ea02a8902f576 | |
parent | Merge pull request #18 from python-discord/react/add-list-key (diff) |
Add new callback route
-rw-r--r-- | src/App.tsx | 4 |
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() { |