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
|