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

19 lines
367 B
TypeScript
Raw Normal View History

2024-10-11 16:15:24 +08:00
import PluginsPanel from './plugins-panel'
2024-10-11 16:29:07 +08:00
import Container from './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