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.

21 lines
400 B

  1. import PureRenderMixin from 'react-addons-pure-render-mixin';
  2. const ColumnHeader = React.createClass({
  3. propTypes: {
  4. type: React.PropTypes.string
  5. },
  6. mixins: [PureRenderMixin],
  7. render () {
  8. return (
  9. <div style={{ padding: '15px', fontSize: '16px', background: '#2f3441', flex: '0 0 auto' }}>
  10. {this.props.type}
  11. </div>
  12. );
  13. }
  14. });
  15. export default ColumnHeader;