about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/column.jsx
blob: b347ee3a81dbea504ba39ab1b8e83947c027bb36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import StatusListContainer from '../containers/status_list_container';
import ColumnHeader        from './column_header';
import PureRenderMixin     from 'react-addons-pure-render-mixin';

const Column = React.createClass({

  propTypes: {
    type: React.PropTypes.string
  },

  mixins: [PureRenderMixin],

  render () {
    return (
      <div style={{ width: '380px', flex: '0 0 auto', background: '#282c37', margin: '10px', marginRight: '0', display: 'flex', flexDirection: 'column' }}>
        <ColumnHeader type={this.props.type} />
        <StatusListContainer type={this.props.type} />
      </div>
    );
  }

});

export default Column;