有Parent
和Child
两个组件,我想指定Parent
的children
只能是Child
,而不能是其它的元素。
下面ParentProps.children
的类型为ReactElement<ChildProps>[]
也不能实现,传入非Child
的元素组件也不报错。
这个应该怎么实现?
type ChildProps = {
name: string
}
const Child:FC<ChildProps> = ({name}) => {
return <div>{name}</div>
}
type ParentProps = {
children: ReactElement<ChildProps>[] //怎样指定children只能是Child
}
const Parent:FC<ParentProps> = ({children}) =>{
return <div>{children}</div>
}
const App = () => {
/*
return (
<Parent>
<span>不是Child</span>
</Parent>
)
*/
return (
<Parent>
<Child name='abc123' />
<Child name='xyz456' />
</Parent>
)
}
父组件不用FC试试,用普通的函数式组件