Module not found: Error: Can’t resolve ‘styled-components’
The error indicates that the styled-components
library is not installed in your project. To resolve this issue, you need to install the styled-components
package using a package manager like npm
or yarn
.
Steps to Fix
Install styled-components:
Run the following command in your terminal:
</>
Copy
npm install styled-components
The following is screenshot of running the npm command in terminal in Visual Studio Code.
Or if you are using yarn
, run the following command.
</>
Copy
yarn add styled-components