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.
23 lines (18 loc) • 356 B
JSX
import React, { PropTypes } from 'react';
const style = {
width: '220px',
wordWrap: 'break-word',
direction: 'ltr',
fontSize: '12.8px',
fontFamily: 'Arial',
lineHeight: '1.2',
};
const SideBar = (props) => (
<div style={style}>
{props.children}
</div>
);
SideBar.propTypes = {
children: PropTypes.node,
};
export default SideBar;