summaryrefslogtreecommitdiff
path: root/web/src/views/LoadingPage/LoadingPage.tsx
diff options
context:
space:
mode:
authordependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>2020-11-07 13:06:18 +1100
committerGitHub <noreply@github.com>2020-11-07 13:06:18 +1100
commite6f4768961af15532d3195a4b4c687099eec6f69 (patch)
tree5a42898067bf9af9e4932060d8d01de20c0862ed /web/src/views/LoadingPage/LoadingPage.tsx
parentc705fd19399ec6064dcf92d8fa33ff536df81cfb (diff)
[MISC] (deps): Bump react-scripts from 3.4.4 to 4.0.0 in /web (#1403)
Bumps [react-scripts](https://github.com/facebook/create-react-app/tree/HEAD/packages/react-scripts) from 3.4.4 to 4.0.0. - [Release notes](https://github.com/facebook/create-react-app/releases) - [Changelog](https://github.com/facebook/create-react-app/blob/master/CHANGELOG-3.x.md) - [Commits](https://github.com/facebook/create-react-app/commits/react-scripts@4.0.0/packages/react-scripts) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Address CRA breaking changes This is related to [breaking changes](https://github.com/facebook/create-react-app/blob/master/CHANGELOG.md#breaking-changes) in CRA specific to ESLint. Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Diffstat (limited to 'web/src/views/LoadingPage/LoadingPage.tsx')
-rw-r--r--web/src/views/LoadingPage/LoadingPage.tsx6
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