最佳答案
我更新了我的 React 项目,创建了 React App 4.0 版本,并将我的文件逐渐转移到 TypeScript。我知道在这个新版本中,你不需要重复地从 'react' 中导入 React。但是,在所有没有导入 React 的 TS 文件中,我都会收到这个错误:
'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.ts(2686)
我知道我可以通过导入 React 来修复它,但是我认为这已经不再需要了。还有,谁能解释一下这个错误的意思?
我的 TSX 文件
const Users = () => {
return <>Teachers aka Users>;
};
export default Users;