diff options
author | 2024-07-09 20:21:39 +0100 | |
---|---|---|
committer | 2024-07-10 01:56:38 +0100 | |
commit | f5024e46fd68c153ba20e094ec1e17012e4ae4fc (patch) | |
tree | 902571d674ab7c16e0d7643f32d252df56ac8c65 /src/App.tsx | |
parent | Send dispatches to store on authorization state attempt changes (diff) |
Add AuthorizationSplash to display above content when auth in progress
Diffstat (limited to 'src/App.tsx')
-rw-r--r-- | src/App.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/App.tsx b/src/App.tsx index 70e0b11..d622840 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -7,6 +7,8 @@ import { BrowserRouter, Route, Routes } from "react-router-dom"; import { PropagateLoader } from "react-spinners"; +import AuthorizationSplash from "./components/AuthorizationSplash"; + import { CSSTransition, TransitionGroup } from "react-transition-group"; import globalStyles from "./globalStyles"; @@ -51,6 +53,7 @@ function App(): JSX.Element { return ( <div> <Global styles={globalStyles}/> + <AuthorizationSplash/> <TransitionGroup> <CSSTransition key={location.pathname} classNames="fade" timeout={300}> <BrowserRouter> |