dify/web/app/components/plugins/plugin-detail-panel/multiple-tool-selector/index.tsx
2024-12-27 14:43:07 +08:00

14 lines
183 B
TypeScript

import React from 'react'
type Props = {
value: any[]
}
const MultipleToolSelector = ({ value }: Props) => {
return (
<div></div>
)
}
export default MultipleToolSelector