fix: eslint to find top dir
parent
3b48f8c98e
commit
f9c48e9ea9
@ -0,0 +1,15 @@
|
||||
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