### What problem does this PR solve? Feat: Add a tool operator node from the agent form #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
import { INextOperatorForm } from '../../interface';
|
|
|
|
const ToolForm = ({ node }: INextOperatorForm) => {
|
|
return <section>xxx</section>;
|
|
};
|
|
|
|
export default ToolForm;
|