mirror of
https://github.com/langgenius/dify.git
synced 2026-02-19 01:14:44 +08:00
15 lines
437 B
TypeScript
15 lines
437 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 = async () => {
|
|
return (
|
|
<PluginPage
|
|
plugins={<PluginsPanel />}
|
|
marketplace={<Marketplace pluginTypeSwitchClassName="top-[60px]" showSearchParams={false} />}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default PluginList
|