summaryrefslogtreecommitdiff
path: root/frontend/src/components/app/map/LoadingScreen.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/app/map/LoadingScreen.js')
-rw-r--r--frontend/src/components/app/map/LoadingScreen.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/frontend/src/components/app/map/LoadingScreen.js b/frontend/src/components/app/map/LoadingScreen.js
new file mode 100644
index 00000000..9f379e0b
--- /dev/null
+++ b/frontend/src/components/app/map/LoadingScreen.js
@@ -0,0 +1,11 @@
+import React from "react";
+import FontAwesome from "react-fontawesome";
+
+const LoadingScreen = () => (
+ <div className="display-4">
+ <FontAwesome name="refresh" className="mr-4" spin />
+ Loading your datacenter...
+ </div>
+);
+
+export default LoadingScreen;