我已经使用 React JS 和 Flow 工作了很长时间,现在,最近切换到了 typescript。我不确定为什么打字稿会抱怨无状态组件定义。
资源
interface Test2Prop {
names : string[];
}
const TestComponent: SFC<TestProp> = (props: TestProp) => {
return (
props.name.map((val, idx) => <h3 key={idx}>{`APPENDING-${val}`}</h3>)
);
}
错误
[ts]
Type '(props: TestProp) => Element[]' is not assignable to type 'FunctionComponent<TestProp>'.
Type 'Element[]' is not assignable to type 'ReactElement<any>'.
Property 'type' is missing in type 'Element[]'. [2322]
而且我不确定为什么使用 React.Fragment 会使错误消失。
interface Test2Prop {
names : string[];
}
const Tests : React.SFC<Test2Prop> = (props : Test2Prop) => {
return (
<React.Fragment>
{ props.names.map(name => <h1>{name}</h1>) }
</React.Fragment>
);
}
我不想使用 React.Fragment 因为根据我的理解,这不是一个解决方案,而是一个 hack。