const {Component} = require('react') const {Paper} = require('material-ui') class Card extends Component{ render(){ const style = { panel: { padding: 16, margin: 10, ...this.props.style }, title: { paddingTop: 0, fontSize: 18, ...this.props.titleStyle } } return ( {this.props.title &&

{this.props.title}

} {this.props.children} {this.props.actions &&
{this.props.actions}
}
) } } export {Card as default}