2024-10-12 11:05:03 +08:00
|
|
|
import PluginsPanel from '@/app/components/plugins/plugins-panel'
|
|
|
|
import Container from '@/app/components/plugins/container'
|
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-11 16:15:24 +08:00
|
|
|
<Container
|
|
|
|
plugins={<PluginsPanel />}
|
|
|
|
marketplace={<Marketplace />}
|
|
|
|
/>
|
2024-09-14 17:09:25 +08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const metadata = {
|
|
|
|
title: 'Plugins - Dify',
|
|
|
|
}
|
|
|
|
|
|
|
|
export default PluginList
|