import { HistoryItem } from './HistoryItem'; import { HistoryEmptyState } from './HistoryEmptyState'; import type { VideoHistoryItem } from '@/lib/types'; interface HistoryListProps { history: VideoHistoryItem[]; onRemove: (showIdentifier: string) => void; isPremium?: boolean; } export function HistoryList({ history, onRemove, isPremium = false }: HistoryListProps) { return (