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.

14 lines (12 loc) 500 B
import React, { Component } from 'react'; export default class Loader extends Component { render() { return (<div className="cluedIn_rectSpinner"> <div className="cluedIn_rect cluedIn_rect1"></div> <div className="cluedIn_rect cluedIn_rect2"></div> <div className="cluedIn_rect cluedIn_rect3"></div> <div className="cluedIn_rect cluedIn_rect4"></div> <div className="cluedIn_rect cluedIn_rect5"></div> </div>); } }