I start a new project in React 17, and using create-react-app.
Now i have to import some js and css files into the project ,but the js file is write like this :
(function(b){
var JGOcx = { ... },
JGTimeOut = { ... },
....
}(window);
I don't think this file i can easily using in a React project,I just want to use a "JGOcx" object , what should I do ?
wait for answers ...