summaryrefslogtreecommitdiff
path: root/src/components/map/LoadingScreen.js
blob: 3d5753e2c24aa23c80baf6e31b73570b1d47068a (plain)
1
2
3
4
5
6
7
8
9
10
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;