/** * * ListHeader * */ import React from 'react'; import { FormattedMessage } from 'react-intl'; import cn from 'classnames'; // import InputCheckBox from 'components/InputCheckbox'; import styles from './styles.scss'; function ListHeader() { const titles = [ '', 'type', 'hash', 'name', 'updated', 'size', 'related', '', ]; return (
  • {titles.map((title, key) => { if (title !== '') { return (
    ); } return
    ; })}
  • ); } export default ListHeader;