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/plugin-page/list/index.tsx

24 lines
532 B
TypeScript

import type { FC } from 'react'
import PluginItem from '../../plugin-item'
import type { PluginDetail } from '../../types'
type IPluginListProps = {
pluginList: PluginDetail[]
}
const PluginList: FC<IPluginListProps> = ({ pluginList }) => {
return (
<div className='pb-3'>
<div className='grid grid-cols-2 gap-3'>
{pluginList.map(plugin => (
<PluginItem
key={plugin.plugin_id}
plugin={plugin}
/>
))}
</div>
</div>
)
}
export default PluginList