'use client' import type { FC } from 'react' import NodePanel from './node' import type { NodeTracing } from '@/types/workflow' type TracingPanelProps = { list: NodeTracing[] onShowIterationDetail: (detail: NodeTracing[][]) => void } const TracingPanel: FC = ({ list, onShowIterationDetail }) => { return (
{list.map(node => ( ))}
) } export default TracingPanel