verekia / js-stack-from-scratch

🛠️⚡ Step-by-step tutorial to build a modern JavaScript stack.
MIT License
20.05k stars 1.99k forks source link

Issue with react-jss #243

Open davidfq opened 7 years ago

davidfq commented 7 years ago

At the end of chapter 08, I've got some errors just after src/server/render-app.jsx edit:

Warning: React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in.
Invariant Violation: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in.
    at invariant (/Users/davidfq/Code/js-stack/node_modules/fbjs/lib/invariant.js:44:15)
    at ReactCompositeComponentWrapper.instantiateReactComponent [as _instantiateReactComponent] (/Users/davidfq/Code/js-stack/node_modules/react-dom/lib/instantiateReactComponent.js:74:56)
...

It seems that <SheetsRegistryProvider> is not available in react-jss v7.1.0. I've just changed it to <JssProvider> and everything worked.

watadarkstar commented 6 years ago

@davidfq I got the same issue, I put in a pull request if you would like to review it and thumbs up it: https://github.com/verekia/js-stack-from-scratch/pull/245

fishear commented 6 years ago

I got the same issue with react-jss@7.2.0, and I changed to < JssProvider>, it works fine, thanks @davidfq