Files
dify/web/app/components/plugins/install-plugin/install-bundle/steps/select-package.tsx
2024-11-12 15:48:00 +08:00

21 lines
375 B
TypeScript

'use client'
import type { FC } from 'react'
import React from 'react'
import type { PluginDeclaration } from '../../../types'
type Props = {
plugins: PluginDeclaration[],
onChange: (plugins: PluginDeclaration[]) => void
}
const SelectPackage: FC<Props> = ({
plugins,
onChange,
}) => {
return (
<div>
</div>
)
}
export default React.memo(SelectPackage)