mirror of
https://github.com/langgenius/dify.git
synced 2026-03-01 05:48:40 +08:00
21 lines
375 B
TypeScript
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)
|