/ embark-ui / src / components / Loading.js
Loading.js
 1  import React from 'react';
 2  import {Row, Col} from 'reactstrap';
 3  import FontAwesome from 'react-fontawesome';
 4  
 5  import "./Loading.css";
 6  
 7  const Loading = () => (
 8    <Row className="align-items-center mt-5">
 9      <Col className="text-center">
10        <FontAwesome name="spinner" spin size="3x" />
11      </Col>
12    </Row>
13  );
14  
15  export default Loading;