React ES6语法

时间:2019-01-11 16:02:57

标签: javascript reactjs class ecmascript-6

这个语法是什么意思?

本部分: $ FlowFixMeProps,$ FlowFixMeState

class Tester extends React.Component<$FlowFixMeProps, $FlowFixMeState> {
...
}

谢谢

2 个答案:

答案 0 :(得分:0)

它看起来像来自类型检查库FlowJS。

请参阅:https://flow.org/en/docs/react/components/

答案 1 :(得分:-1)

这种语法对我来说就像打字稿。

$ FlowFixMeProps是您的react组件的props的类,而$ FlowFixMeState是您的react组件的state的类。

将typescript与react结合使用的示例是here。 您也许可以找到有关此反应/ ts组合如何工作的更多信息。