diff options
Diffstat (limited to 'src/components/map/LoadingScreen.js')
| -rw-r--r-- | src/components/map/LoadingScreen.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/map/LoadingScreen.js b/src/components/map/LoadingScreen.js new file mode 100644 index 00000000..3d5753e2 --- /dev/null +++ b/src/components/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; |
