I am trying to use styled-jsx with some code. However, no matter what I do, I seem to get an error
index.js:1437 Warning: Received `true` for a non-boolean attribute `jsx`.
If you want to write it to the DOM, pass a string instead: jsx="true" or jsx={value.toString()}.
in style (at App.js:12)
in div (at App.js:9)
in Test (created by Route)
in Route (at App.js:29)
in Router (created by BrowserRouter)
in BrowserRouter (at App.js:27)
in App (at src/index.js:7)
I have tried reinstalling node_modules, made sure my configuration is all good, and tested different versions.
My package.json,
{
"name": "preview",
"version": "0.1.0",
"private": true,
"dependencies": {
"contentful": "^7.4.1",
"react": "^16.8.6",
"react-dom": "^16.8.4",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.0.1",
"socket.io-client": "^2.2.0",
"styled-jsx": "^3.2.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"babel": {
"presets": [
"@babel/preset-stage-2"
],
"plugins": [
"styled-jsx/babel"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"proxy": "http://localhost:5000/"
}
My sample React code that still throws the error.
const Test = () => {
return (
<div>
<p>test
</p>
<style jsx>{
`
p {
color: red;
}
`
}
</style>
</div>)
}
class App extends Component {
render () {
return (
<Router>
<Route path='/test' component={Test}/>
</Router>
)
}
}
export default App;
I expect to not have any error messages based on the documentation
OK. Since I myself spent a few hours before solving this, I hope I can help you guys who also have this problem.
To use styled-jsx
with create-react-app
, you need:
yarn add react-app-rewired customize-cra
Replace in package.json
:
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
with
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
package.json
) file config-overrides.js
const { override, addBabelPlugin, addBabelPreset } = require('customize-cra');
module.exports = override(
addBabelPlugin('styled-jsx/babel')
);
.babelrc
(it is only used when you run jest test
){
"plugins": ["styled-jsx/babel"]
}
index.js
(or where it is you mount React into DOM), before calling ReactDOM.render(...)
, insert the following bit of code, taken from styled-jsx
issue #560
const _JSXStyle = require('styled-jsx/style').default;
if (typeof global !== 'undefined') {
Object.assign(global, { _JSXStyle });
}
It is unfortunate, but this complex configuration is a bit fickle without it.
You need steps 4 and 5 only if you use yarn build
or yarn test
with create-react-app.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With