//create a webpack.config.js file on the root of the project to use the latest version of styled components with react and add the following snippet: const path = require('path'); module.exports = { resolve: { alias: { 'styled-components': path.resolve( __dirname, 'node_modules', 'styled-components' ), }, }, };