import React from 'react'; import { Zap, Flame } from 'lucide-react'; import { Card } from '../ui/Card'; interface SynapticSimulationPanelProps { concepts: string[]; selectedSpikes: number[]; toggleSpike: (idx: number) => void; currentLogs: string[]; } export const SynapticSimulationPanel: React.FC = ({ concepts, selectedSpikes, toggleSpike, currentLogs, }) => { return (
{/* Spike grid */}

Trigger Neural Spikes

{concepts.map((concept, idx) => ( ))}
{/* STDP Logs */} STDP Log Activity
{currentLogs.map((log, idx) => (
{log}
))} {currentLogs.length === 0 && (
No synaptic evolution recorded
)}
); };