import React from 'react'; import { Utils } from '../../utils/utils'; const RecentlyUsedListItem = ({ item, isSelected, onItemClick }) => { if (!item || typeof item.path !== 'string') { return ''; } const title = Utils.getFileName(item.path); const handleItemClick = () => { onItemClick(item.repo, item.path); }; return (