React 实战 | 解决引入Antd报警告JSX element type 'RadioGroup' is not a constructor function for JSX elements.

使用公司里的脚手架搭建react项目,但是在使用antd组件时,会显示警告:
JSX element type ‘RadioGroup’ is not a constructor function for JSX elements.
查看了网上的一些解决方案,大概就是这两种:

方案一

在tsconfig.json中设置"allowSyntheticDefaultImports": true

方案二

如果方案一解决不了,就更新react版本

yarn upgrade @types/react@latest

参考

你可能感兴趣的:(React,React)