dify/web/app/components/workflow/plugin-dependency/index.tsx
2024-11-13 15:48:25 +08:00

15 lines
235 B
TypeScript

import { useStore } from './store'
const PluginDependency = () => {
const dependencies = useStore(s => s.dependencies)
if (!dependencies.length)
return null
return (
<div>a</div>
)
}
export default PluginDependency