clicke here to see pondjs folder inside node-modulesI've installed pondjs(https://www.npmjs.com/package/pondjs) using npm install pondjs --save in my react application. It's also present in package.json. I couldn't understand why in App. js when I'm doing :
import { TimeSeries , TimeRange} from 'pondjs';
it says module not installed and hence unable to recognise it's functions.
Also, I have a js file which contains lots of data in Object form and I'm trying to import that file in App.js using :
import pathtofile/inputdata.js';
and storing in the variable as below :
var input_data = data;
IS this the right way to do in react App.js file? Please suggest