import React from 'react'; import { FormattedMessage } from 'react-intl'; import { Text } from 'soapbox/components/ui'; import { HotKeys } from 'soapbox/features/ui/components/hotkeys'; interface ITombstone { id: string; onMoveUp?: (statusId: string) => void; onMoveDown?: (statusId: string) => void; } /** Represents a deleted item. */ const Tombstone: React.FC = ({ id, onMoveUp, onMoveDown }) => { const handlers = { moveUp: () => onMoveUp?.(id), moveDown: () => onMoveDown?.(id), }; return (
); }; export default Tombstone;