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

16 lines
205 B
TypeScript
Raw Normal View History

2024-09-14 17:09:25 +08:00
import Container from './Container'
const PluginList = async () => {
return (
2024-09-29 18:27:26 +08:00
<>
<Container />
</>
2024-09-14 17:09:25 +08:00
)
}
export const metadata = {
title: 'Plugins - Dify',
}
export default PluginList