使用带有React + Flow的附加静态属性的组件?

时间:2018-06-14 17:04:35

标签: reactjs flowtype

我有大约这段代码:

goToHomeEvent

实际上,静态属性是使用重构/* @flow */ import * as React from 'react'; const Foo = () => null; Foo.bar = null; const Bar: React.ComponentType<{}> & { bar: any } = Foo; const Baz = ({ children } : { children: React.Node }) => children; <Baz><Bar /></Baz> HOC分配的,但最终结果是相同的。

我的问题是这段代码会让Flow抛出following error

setStatic

如何更改我的类型注释以使Flow满意?

0 个答案:

没有答案