Merge branch 'feat/plugins' of github.com:langgenius/dify into feat/plugins
commit
d00b2724cc
@ -0,0 +1,14 @@
|
|||||||
|
import Card from '@/app/components/plugins/card'
|
||||||
|
const PluginList = async () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Card />
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export const metadata = {
|
||||||
|
title: 'Plugins - Card',
|
||||||
|
}
|
||||||
|
|
||||||
|
export default PluginList
|
||||||
@ -1,15 +0,0 @@
|
|||||||
import React from 'react'
|
|
||||||
|
|
||||||
type ListItemProps = {
|
|
||||||
text: string
|
|
||||||
}
|
|
||||||
|
|
||||||
const ListItem: React.FC<ListItemProps> = ({ text }) => {
|
|
||||||
return (
|
|
||||||
<div>
|
|
||||||
<p>{text}</p>
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default ListItem
|
|
||||||
Loading…
Reference in New Issue