mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-26 16:02:18 +08:00
d4432ed80f
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
406 B
TypeScript
15 lines
406 B
TypeScript
import Marketplace from '@/app/components/plugins/marketplace'
|
|
import PluginPage from '@/app/components/plugins/plugin-page'
|
|
import PluginsPanel from '@/app/components/plugins/plugin-page/plugins-panel'
|
|
|
|
const PluginList = () => {
|
|
return (
|
|
<PluginPage
|
|
plugins={<PluginsPanel />}
|
|
marketplace={<Marketplace pluginTypeSwitchClassName="top-[60px]" />}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default PluginList
|