import React, { useState } from 'react'; import { Innovation, Classification } from '../types'; import { ChevronDown, ChevronUp, Trash2, Check, Zap, FileText } from 'lucide-react'; import { COLOR_MAP } from '../constants'; interface InnovationCardProps { innovation: Innovation; onClassify: (id: string, classification: Classification) => void; } const InnovationCard: React.FC = ({ innovation, onClassify }) => { const [isExpanded, setIsExpanded] = useState(false); return (
setIsExpanded(!isExpanded)}>

File name

{innovation.file_name}

{/*

Innovation Potential

{ }

*/}
{isExpanded && (
)}
); }; export default InnovationCard;