dify/web/app/components/plugins/list-item-for-test.tsx
2024-09-29 18:27:36 +08:00

16 lines
209 B
TypeScript

import React from 'react'
type ListItemProps = {
text: string
}
const ListItem: React.FC<ListItemProps> = ({ text }) => {
return (
<div>
<p>{text}</p>
</div>
)
}
export default ListItem