UNPKG

cluedin-widget

Version:

This project contains all the pages needed for browsing entities and searching them. The aim is to replace the CluedIn.Webapp project with this one when all the pages ( including the Admin page ) will be ported to REACT.

12 lines (10 loc) 442 B
import React, { Component } from 'react'; import RefreshIndicator from 'material-ui/RefreshIndicator'; //<img style={style}src="http://s3-eu-west-1.amazonaws.com/cluedindev/cluedin_loading.gif"alt="loading..."/> export default class Loading extends Component { render() { return (<div className="cluedIn_loading"> <RefreshIndicator size={50} top={50} left={-50} status="loading" style={{marginLeft: '50%'}}/> </div>); } };