mirror of
https://github.com/langgenius/dify.git
synced 2026-05-04 01:18:05 +08:00
16 lines
209 B
TypeScript
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
|