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.
20 lines (16 loc) • 483 B
JSX
import React, { PropTypes } from 'react';
import CluedInImage from './CluedInImage.jsx';
const cluedInImage = {
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">
<CluedInImage style={cluedInImage} />
<div style={{float: 'right'}}>Powered By</div>
</a>
</div>);
};
export default PoweredByCluedIn;