dify/web/app/(commonLayout)/plugins/page.tsx

19 lines
429 B
TypeScript
Raw Normal View History

2024-10-12 11:33:12 +08:00
import PluginPage from '@/app/components/plugins/plugin-page'
2024-10-12 16:34:02 +08:00
import PluginsPanel from '@/app/components/plugins/plugin-page/plugins-panel'
2024-10-11 16:15:24 +08:00
import Marketplace from '@/app/components/plugins/marketplace'
2024-09-14 17:09:25 +08:00
const PluginList = async () => {
return (
2024-10-12 11:33:12 +08:00
<PluginPage
2024-10-11 16:15:24 +08:00
plugins={<PluginsPanel />}
marketplace={<Marketplace />}
/>
2024-09-14 17:09:25 +08:00
)
}
export const metadata = {
title: 'Plugins - Dify',
}
export default PluginList