import React from 'react'; import MenuContent from 'Components/Menu/MenuContent'; import SortMenu from 'Components/Menu/SortMenu'; import SortMenuItem from 'Components/Menu/SortMenuItem'; import { align } from 'Helpers/Props'; import SortDirection from 'Helpers/Props/SortDirection'; import translate from 'Utilities/String/translate'; interface IndexerIndexSortMenuProps { sortKey?: string; sortDirection?: SortDirection; isDisabled: boolean; onSortSelect(sortKey: string): unknown; } function IndexerIndexSortMenu(props: IndexerIndexSortMenuProps) { const { sortKey, sortDirection, isDisabled, onSortSelect } = props; return ( {translate('Status')} {translate('Name')} {translate('Added')} {translate('SyncProfile')} {translate('Priority')} {translate('Protocol')} {translate('Privacy')} ); } export default IndexerIndexSortMenu;