// - Import react components import React, {Component} from 'react' import CircularProgress from 'material-ui/CircularProgress' import Dialog from 'material-ui/Dialog' // - Import app components // - Create MasterLoading component class export default class MasterLoading extends Component { // Constructor constructor(props) { super(props); // Binding functions to `this` } // Render app DOM component render() { return (

Green

); } }