我正在使用Blueprint的基于Web的基于UI的UI工具包。我正在使用他们的表格代码,它是打字稿,但出现一个奇怪的错误。
我的代码就像-https://github.com/palantir/blueprint/blob/develop/packages/docs-app/src/examples/table-examples/tableEditableExample.tsx一样,但是改动很小,使打字稿可以在我的计算机上工作。
我的错误是与此代码行有关
char s2[]= " wo rl d";
char *h = s2;
while(*h != '\0'){
if(*h == ' '){
*h=1;
}
h++;
}
printf("%s",s2);
错误文字
JSX元素类型'Example'不是JSX元素的构造函数。 类型“ Example”缺少类型“ ElementClass”中的以下属性:context,setState,forceUpdate,props和另外2个。
JSX元素类不支持属性,因为它没有'props'属性。