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

23 lines
582 B
TypeScript
Raw Normal View History

2024-10-09 11:35:07 +08:00
import Card from '@/app/components/plugins/card'
2024-10-09 17:50:23 +08:00
import { extensionDallE, modelGPT4, toolNotion } from '@/app/components/plugins/card-mock'
2024-10-09 11:35:07 +08:00
const PluginList = async () => {
return (
<>
2024-10-09 17:50:23 +08:00
<div className='mx-3 grid grid-cols-4 gap-3'>
<Card payload={toolNotion as any} />
<Card payload={extensionDallE as any} />
<Card payload={modelGPT4 as any} />
<Card payload={toolNotion as any} />
<Card payload={toolNotion as any} />
</div>
2024-10-09 11:35:07 +08:00
</>
)
}
export const metadata = {
title: 'Plugins - Card',
}
export default PluginList