流类型不接受defaultProps使用react lazy

时间:2019-05-10 08:22:44

标签: javascript reactjs flowtype

流类型不接受defaultProps使用惰性反应。

这是我的代码:

1。 Post组件中的defaultProps:

thread.interrupt()

2。与React Lazy一起使用组件

static defaultProps = {
  featureImage: "",
  featureRatio: "16x9"
}

3。我收到流程错误

export const PostLazy = lazy<PostProps>(
  (): any => import("../components/Post")
);

<PostLazy
  featureImage={item.featureImage}
/>

当我以常规方式使用它时效果很好

Cannot create `PostLazy` element because property `featureRatio` is missing
in  props [1] but exists in  `PostProps` [2].

0 个答案:

没有答案