mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-08 08:51:47 +08:00
19 lines
429 B
TypeScript
19 lines
429 B
TypeScript
import PluginPage from '@/app/components/plugins/plugin-page'
|
|
import PluginsPanel from '@/app/components/plugins/plugin-page/plugins-panel'
|
|
import Marketplace from '@/app/components/plugins/marketplace'
|
|
|
|
const PluginList = async () => {
|
|
return (
|
|
<PluginPage
|
|
plugins={<PluginsPanel />}
|
|
marketplace={<Marketplace />}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export const metadata = {
|
|
title: 'Plugins - Dify',
|
|
}
|
|
|
|
export default PluginList
|