import { usePhotoStore } from '../store/photoStore' export function KeyboardHints() { const selectedCount = usePhotoStore((state) => state.selectedPhotos.length) const hints = selectedCount > 0 ? [ { key: '1-5', action: 'Rate' }, { key: 'P', action: 'Pick' }, { key: 'X', action: 'Reject' }, { key: 'Delete', action: 'Trash' }, { key: 'Esc', action: 'Deselect' }, ] : [ { key: '↑↓←→', action: 'Navigate' }, { key: 'Click', action: 'Select' }, { key: 'Shift+Click', action: 'Range' }, { key: 'Ctrl+A', action: 'Select All' }, { key: 'Space', action: 'Preview' }, ] return (