import React from 'react' import type { Turn } from './useSession' const ROLE_GLYPH: Record = { user: '▸', assistant: '◆', tool: '·', } interface TurnListProps { turns: Turn[] selected: number onSelect: (seq: number) => void } export function TurnList({ turns, selected, onSelect, }: TurnListProps): React.JSX.Element { return ( ) }