import React from 'react'; import { AgentSession } from '../utils/types'; import { getSampleAgentSessions } from '../utils/sample-data'; import { SessionList } from './SessionList'; interface SessionSidebarProps { onSelectSession?: (sessionId: string) => void; currentSessionId?: string; sessions?: AgentSession[]; className?: string; } export const SessionSidebar: React.FC = ({ onSelectSession, currentSessionId, sessions = getSampleAgentSessions(), className = '' }) => { return (

Sessions

); };