diff options
author | 2022-07-01 23:27:40 +0400 | |
---|---|---|
committer | 2022-07-01 23:27:40 +0400 | |
commit | e0f9989b56501693289ffeae505b2b36eb4d6273 (patch) | |
tree | 575f538151a79060991071c8017f837e827fddee /src/App.tsx | |
parent | Cleanup Code Owners Comments (#475) (diff) | |
parent | Codify Question State Type (diff) |
Merge pull request #474 from python-discord/display-test-failures
Display Test Failures & Refactor Formpage
Diffstat (limited to 'src/App.tsx')
-rw-r--r-- | src/App.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.tsx b/src/App.tsx index 752a6c6..5430e40 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -12,7 +12,7 @@ import { CSSTransition, TransitionGroup } from "react-transition-group"; import globalStyles from "./globalStyles"; const LandingPage = React.lazy(() => import("./pages/LandingPage")); -const FormPage = React.lazy(() => import("./pages/FormPage")); +const FormPage = React.lazy(() => import("./pages/FormPage/FormPage")); const CallbackPage = React.lazy(() => import("./pages/CallbackPage")); const routes = [ |