diff --git a/src/loadingScreen.js b/src/loadingScreen.js index 2220f33..6e4f6a0 100644 --- a/src/loadingScreen.js +++ b/src/loadingScreen.js @@ -45,28 +45,23 @@ const Startup = (obj) => { } }, [refreshInterval]); - if(isLoaded){ + if (isLoaded) { console.log("Rendering Application"); return obj.children; - }else{ + } else { console.log("Rendering Loading Screen"); - return
-
- -
-
-
+ return ( +
-

Loading...

+ +
+
+
+

Loading...

+
-
-
-
- nframe.nl -
-
-
+ ) } }