这两个例子完成了同样的事情。但是引擎盖下的区别是什么?我了解函数式组件与 React.Component 和 React.PureComponent,但我一直找不到关于React.FunctionComponent
.
React.FunctionComponent
const MyComponentA: React.FunctionComponent = (props) => {
return (
<p>I am a React.FunctionComponent</p>
);
};
纯JS函数组件:
const MyComponentB = (props) => {
return (
<p>I am a plain JS function component</p>
);
};