import React from 'react'; import { Brain, Trash2, Clock, Target, Lightbulb } from 'lucide-react'; interface DecisionLogProps { decisions: any[]; onClear: () => void; } export const DecisionLog: React.FC = ({ decisions, onClear }) => { return (

AI Decision Log

Real-time reasoning & actions

{decisions.length === 0 ? (

No decisions yet

AI reasoning will appear here as tasks run

) : (
{decisions.map((decision, index) => (
{decision.action?.toUpperCase() || 'THINKING'}
{new Date().toLocaleTimeString()}

{decision.reason || 'Processing...'}

{decision.text && (

"{decision.text}"

)}
))}
)}
); };