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.
13 lines (11 loc) • 449 B
JSX
import React, { Component } from 'react';
export default class Loading extends Component {
render() {
var style = {
width: '75px'
};
return (<div className="cluedIn_loading"><img style={style}
src="http://s3-eu-west-1.amazonaws.com/cluedindev/cluedin_loading.gif"
alt="loading..."/></div>);
}
};