diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx
index 9142994..e8bd257 100644
--- a/frontend/src/App.jsx
+++ b/frontend/src/App.jsx
@@ -1,5 +1,6 @@
import "@fontsource/roboto";
+import { Suspense } from "react";
import { BrowserRouter, Route, Redirect, Switch } from "react-router-dom";
import Theme from "./components/Theme";
@@ -10,19 +11,25 @@ import NotFound from "./routes/NotFound";
import Network from "./routes/Network/Network";
import Settings from "./routes/Settings";
+import Loading from "./components/Loading";
+
+import "./i18n";
+
function App() {
return (
-
-
-
-
-
-
-
-
-
-
+ }>
+
+
+
+
+
+
+
+
+
+
+
);
}
diff --git a/frontend/src/components/Loading/Loading.jsx b/frontend/src/components/Loading/Loading.jsx
new file mode 100644
index 0000000..7122fe7
--- /dev/null
+++ b/frontend/src/components/Loading/Loading.jsx
@@ -0,0 +1,19 @@
+import { Typography, Box, CircularProgress } from "@material-ui/core";
+
+import useStyles from "./Loading.styles";
+
+function Loading() {
+ const classes = useStyles();
+
+ return (
+
+
+
+ Loading
+
+
+
+ );
+}
+
+export default Loading;
diff --git a/frontend/src/components/Loading/Loading.styles.jsx b/frontend/src/components/Loading/Loading.styles.jsx
new file mode 100644
index 0000000..1f7a966
--- /dev/null
+++ b/frontend/src/components/Loading/Loading.styles.jsx
@@ -0,0 +1,32 @@
+// Loading.styles.jsx
+import { makeStyles } from "@material-ui/core/styles";
+
+const useStyles = makeStyles({
+ root: {
+ display: "flex",
+ flexDirection: "column",
+ justifyContent: "center",
+ alignItems: "center",
+ height: "100vh",
+ },
+ loadingText: {
+ marginTop: "16px",
+ position: "relative",
+ "& .loadingDots::after": {
+ content: '"."',
+ position: "absolute",
+ left: "100%",
+ marginLeft: "4px",
+ animation: "$loadingDots 1s infinite",
+ },
+ },
+ "@keyframes loadingDots": {
+ "0%": { content: '"."' },
+ "25%": { content: '".."' },
+ "50%": { content: '"..."' },
+ "75%": { content: '"...."' },
+ "100%": { content: '"."' },
+ },
+});
+
+export default useStyles;
diff --git a/frontend/src/components/Loading/index.jsx b/frontend/src/components/Loading/index.jsx
new file mode 100644
index 0000000..1521242
--- /dev/null
+++ b/frontend/src/components/Loading/index.jsx
@@ -0,0 +1 @@
+export { default } from "./Loading.jsx";
diff --git a/frontend/src/components/NetworkRules/NetworkRules.jsx b/frontend/src/components/NetworkRules/NetworkRules.jsx
index 5321748..e6f57bd 100644
--- a/frontend/src/components/NetworkRules/NetworkRules.jsx
+++ b/frontend/src/components/NetworkRules/NetworkRules.jsx
@@ -17,7 +17,7 @@ import debounce from "lodash/debounce";
import { useState } from "react";
import API from "utils/API";
-import { useTranslation, Trans } from "react-i18next";
+import { useTranslation } from "react-i18next";
function NetworkRules({ network, callback }) {
const { t, i18n } = useTranslation();
diff --git a/frontend/src/index.jsx b/frontend/src/index.jsx
index e79267e..3c94589 100644
--- a/frontend/src/index.jsx
+++ b/frontend/src/index.jsx
@@ -1,17 +1,13 @@
import "./index.css";
-import React, { Suspense } from "react";
+import React from "react";
import ReactDOM from "react-dom";
import App from "./App";
-import "./i18n";
-
ReactDOM.render(
- Loading...}>
-
-
+
,
document.getElementById("root")
);