8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
import { PropsWithChildren } from 'react'
|
|
|
|
const ItemList = (props: PropsWithChildren) => {
|
|
return <ul>{props.children}</ul>
|
|
}
|
|
|
|
export default ItemList
|