Files
weave-scope/client/app/scripts/components/details.js
David Kaltschmidt acbf8a665d Upgrade eslint, react and react-motion
* get rid of material-ui
* reduced bundle size by 20%
2015-11-11 15:51:27 +01:00

22 lines
489 B
JavaScript

const React = require('react');
const NodeDetails = require('./node-details');
const Details = React.createClass({
render: function() {
return (
<div id="details">
<div style={{height: '100%', paddingBottom: 8, borderRadius: 2,
backgroundColor: '#fff',
boxShadow: '0 10px 30px rgba(0, 0, 0, 0.19), 0 6px 10px rgba(0, 0, 0, 0.23)'}}>
<NodeDetails {...this.props} />
</div>
</div>
);
}
});
module.exports = Details;