react
怎样可以限制传入的children
为指定的组件类型?
Typescript
type AProps = {
//children?:ReactElement
}
const A:React.FC<AProps>=(props)=>{
return (
<div>
这里传入的children只能是B或者C,不能传入B或C以外的类型
{props.children}
</div>
)
}
type BProps = {}
const B:React.FC<BProps>=(props)=>(
<div>B组件</div>
)
type CProps = {}
const C:React.FC<CProps>=(props)=>(
<div>C组件</div>
)
function Demo(){
return (
<A>
<B/>
</A>
)
}
ReturnType<>
由函数类型得到返回值类型https://www.typescriptlang.or...