import PropTypes from 'prop-types'; import React from 'react'; import { align, sortDirections } from 'Helpers/Props'; import SortMenu from 'Components/Menu/SortMenu'; import MenuContent from 'Components/Menu/MenuContent'; import SortMenuItem from 'Components/Menu/SortMenuItem'; function ArtistIndexSortMenu(props) { const { sortKey, sortDirection, onSortSelect } = props; return ( Name Type Quality Profile Language Profile Next Airing Previous Airing Added Albums Tracks Track Count Latest Album Path Size on Disk ); } ArtistIndexSortMenu.propTypes = { sortKey: PropTypes.string, sortDirection: PropTypes.oneOf(sortDirections.all), onSortSelect: PropTypes.func.isRequired }; export default ArtistIndexSortMenu;