React refers to a UMD global, but the current file is a module Consider adding an import instead

Опубликовано: 04 Октябрь 2024
на канале: Tech Nursery
130
2

react js error
React refers to a UMD global
the current file is a module
import react

If you're using newer versions of React (v17 or later), you might not need to import React in every file due to the new JSX runtime. In this case, make sure your tsconfig.json has the following option enabled:


{
"compilerOptions": {
"jsx": "react-jsx"
}
}



import React from 'react';