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.
15 lines (10 loc) • 315 B
JSX
import React, { PropTypes } from 'react';
import radium from 'radium';
const DialogContentStyle = {
margin: '15px 0',
};
const DialogContent = (props) => (<div style={DialogContentStyle}>{props.children}</div>);
DialogContent.propTypes = {
children: PropTypes.node,
};
export default radium(DialogContent);