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.

25 lines
435 B

  1. import PureRenderMixin from 'react-addons-pure-render-mixin';
  2. const style = {
  3. display: 'flex',
  4. flex: '1 1 auto',
  5. flexDirection: 'row',
  6. justifyContent: 'flex-start',
  7. overflowX: 'auto'
  8. };
  9. const ColumnsArea = React.createClass({
  10. mixins: [PureRenderMixin],
  11. render () {
  12. return (
  13. <div className='columns-area' style={style}>
  14. {this.props.children}
  15. </div>
  16. );
  17. }
  18. });
  19. export default ColumnsArea;