为什么TypeScript不会编译从props中解构的children属性。

14 浏览
0 Comments

为什么TypeScript不会编译从props中解构的children属性。

编译这段代码时遇到问题,我必须使用`props.children`并删除解构的那一行才能使其正常工作。为什么会这样?我该如何解决?

类型`WithChildren`定义如下:

type WithChildren = {
  children?: ReactNode
}

错误信息:TS2304:找不到名称'children'。

0