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