about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/drawer.jsx
blob: dfba11ad2f0675afe12d9a29ad54fd0a811c1116 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import PureRenderMixin from 'react-addons-pure-render-mixin';

const Drawer = React.createClass({

  mixins: [PureRenderMixin],

  render () {
    return (
      <div style={{ width: '280px', flex: '0 0 auto', boxSizing: 'border-box', background: '#454b5e', margin: '10px', marginRight: '0', padding: '0', display: 'flex', flexDirection: 'column' }}>
        {this.props.children}
      </div>
    );
  }

});

export default Drawer;