dify/web/app/(commonLayout)/plugins/page.tsx
2024-09-29 18:27:36 +08:00

23 lines
443 B
TypeScript

import Container from './Container'
import ListItem from '@/app/components/plugins/list-item-for-test'
const PluginList = async () => {
const mockList = ['Plugin 1', 'Plugin 2', 'Plugin 3']
return (
<>
<Container />
<div>
{mockList.map(item => (
<ListItem key={item} text={item} />
))}
</div>
</>
)
}
export const metadata = {
title: 'Plugins - Dify',
}
export default PluginList