You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
438 B

  1. import PureRenderMixin from 'react-addons-pure-render-mixin';
  2. const style = {
  3. boxSizing: 'border-box',
  4. background: '#454b5e',
  5. padding: '0',
  6. display: 'flex',
  7. flexDirection: 'column',
  8. overflowY: 'auto'
  9. };
  10. const Drawer = React.createClass({
  11. mixins: [PureRenderMixin],
  12. render () {
  13. return (
  14. <div className='drawer' style={style}>
  15. {this.props.children}
  16. </div>
  17. );
  18. }
  19. });
  20. export default Drawer;