I'm trying to get a jump start with React and like the simplicity of the create-react-app tool created by Facebook and described here:
https://facebook.github.io/react/blog/2016/07/22/create-apps-with-no-configuration.html
Can anybody tell me what is wrong here?
I'm trying to combine it with FeatherJS and add this dependency to package.json:
"feathers": "^2.0.0"
and this to App.js:
import feathers from 'feathers';
Now my web app will not load and I get this error in the console:
Compiled with warnings.
Warning in ./src/App.js
/Users/nikolaschou/Dev/newbanking/payment-window/src/App.js
4:8 warning 'feathers' is defined but never used no-unused-vars
✖ 1 problem (0 errors, 1 warning)
Warning in ./~/express/lib/view.js
Critical dependencies:
78:29-56 the request of a dependency is an expression
@ ./~/express/lib/view.js 78:29-56
You may use special comments to disable some warnings.
Use // eslint-disable-next-line to ignore the next line.
Use /* eslint-disable */ to ignore all warnings in a file.