diff options
Diffstat (limited to 'web/src/views/LoadingPage/LoadingPage.tsx')
| -rw-r--r-- | web/src/views/LoadingPage/LoadingPage.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/web/src/views/LoadingPage/LoadingPage.tsx b/web/src/views/LoadingPage/LoadingPage.tsx index 4a334d450..e923c1d7b 100644 --- a/web/src/views/LoadingPage/LoadingPage.tsx +++ b/web/src/views/LoadingPage/LoadingPage.tsx @@ -2,7 +2,7 @@ import React from "react"; import ReactLoading from "react-loading"; import { Typography, Grid } from "@material-ui/core"; -export default function () { +const LoadingPage = function () { return ( <Grid container alignItems="center" justify="center" style={{ minHeight: "100vh" }}> <Grid item style={{ textAlign: "center", display: "inline-block" }}> @@ -11,4 +11,6 @@ export default function () { </Grid> </Grid> ); -}
\ No newline at end of file +} + +export default LoadingPage
\ No newline at end of file |
