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.
21 lines (16 loc) • 419 B
JSX
import React, { PropTypes } from 'react';
const cluedInImage = {
  width: '24px',
  height: '24px',
  display: 'block',
};
const CluedInImage = (props) => {
  let styleMerged = Object.assign({}, cluedInImage, props.style);
  return (<img
    alt="CluedIn"
    style={styleMerged}
    role="presentation"
    src="https://s3.eu-central-1.amazonaws.com/cluedintest/cluedin.png"
  />);
};
export default CluedInImage;