components/ folder and any folder for ReactComponent should have a index.js file
export * from './BarSelectionBrands';
export * from './BarSelectionProperties';
export * from './Home';
...
Sadly, you are using default export and this approach may not work for you. I don't like default export :-1:.
But if anyway you want to work with default export try:
export { default as BarSelectionBrands } from './BarSelectionBrands';
export { default as BarSelectionProperties } from './BarSelectionProperties';
export { default as Home } from './Home';
...
components/
folder and any folder for ReactComponent should have aindex.js
fileSadly, you are using
default export
and this approach may not work for you. I don't like default export :-1:. But if anyway you want to work with default export try:read me
In
App.js
components should be imported: