You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcgj-dify-1.7.0/web/app/components/plugins/install-plugin/install-bundle/steps/select-package.tsx

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)