react-app-rewire-contrib
react-app-rewire-contrib copied to clipboard
README.md incorrectly requires rewireEmotion
Under the Usage with Storybook section, it says you need to do this in your webpack.config.js
:
const rewireEmotion = require('react-app-rewire-emotion');
This didn't work for me, but I fixed it with:
const { rewireEmotion } = require('react-app-rewire-emotion');
:)