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.
22 lines (16 loc) • 377 B
JSX
import React, { PropTypes } from 'react';
const FullName = (props) => {
const { fullName } = props;
const style = {
fontSize: '18px',
fontWeight: 'normal',
color: '#222',
margin: 0,
padding: '12px 6px 9px 9px',
};
return (<div style={style}>{fullName}</div>);
};
FullName.propTypes = {
fullName: PropTypes.string,
};
export default FullName;