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.

19 lines
559 B

  1. import StatusListContainer from '../containers/status_list_container';
  2. import ColumnHeader from './column_header';
  3. const Column = React.createClass({
  4. propTypes: {
  5. type: React.PropTypes.string
  6. },
  7. render: function() {
  8. return (
  9. <div style={{ width: '350px', flex: '0 0 auto', background: '#282c37', margin: '10px', marginRight: '0', display: 'flex', flexDirection: 'column' }}>
  10. <ColumnHeader type={this.props.type} />
  11. <StatusListContainer type={this.props.type} />
  12. </div>
  13. );
  14. }
  15. });
  16. export default Column;