import React from 'react'; import PropTypes from 'prop-types'; // import classNames from 'classnames'; // import Icon from 'soapbox/components/icon'; import SubNavigation from 'soapbox/components/sub_navigation'; export default class ColumnHeader extends React.PureComponent { static propTypes = { icon: PropTypes.string, type: PropTypes.string, active: PropTypes.bool, onClick: PropTypes.func, columnHeaderId: PropTypes.string, }; handleClick = () => { this.props.onClick(); } render() { const { type } = this.props; return ; } // render() { // const { icon, type, active, columnHeaderId } = this.props; // // return ( //

// //

// ); // } }