'use client' import type { FC } from 'react' import Iteration from './iteration' import type { AgentIteration } from '@/models/log' type TracingPanelProps = { list: AgentIteration[] } const TracingPanel: FC = ({ list }) => { return (
{list.map((iteration, index) => ( ))}
) } export default TracingPanel