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.
27 lines (23 loc) • 622 B
JSX
import React, { PropTypes } from 'react';
const cluedInImage = {
  width: '24px',
  height: '24px',
  display: 'block',
  float: 'right',
  opacity: '0.7',
  marginLeft: '5px',
};
const PoweredByCluedIn = (props) => {
  return (<div style={{lineHeight: '24px', color:'#9E9E9E'}}>
    <a target="_blank" href="https://www.cluedin.net">
      <img
        alt="CluedIn"
        style={cluedInImage}
        role="presentation"
        src="https://s3.eu-central-1.amazonaws.com/cluedintest/cluedin.png"
      />
      <div style={{float: 'right'}}>Powered By</div>
    </a>
  </div>);
};
export default PoweredByCluedIn;