我有大约这段代码:
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满意?