We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
- Project \ _ Component \ _ index.js \ _ App.js
App.js is the entry point
App.js
// App.js var Component = require('./Component');
doesn't import index.js automatically. Had to manually specify
index.js
// App.js var Component = require('./Component/index');