mirror of
https://github.com/langgenius/dify.git
synced 2026-03-25 04:49:47 +08:00
23 lines
443 B
TypeScript
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
|