Skip to content Skip to sidebar Skip to footer

Module Not Found: Error: Can't Resolve './node_modules/react' In '/Users//Documents/gift-test/client'

So for my project (using React and Redux), I keep having errors of 'Module Not Found'. I've google'd & stackoverflow'd several solutions and have seen people say that there's s

Solution 1:

Because you need to install react as a dependency. To install just execute this command npm i react

ANSWER: import react like this ìmport React from 'react';


Post a Comment for "Module Not Found: Error: Can't Resolve './node_modules/react' In '/Users//Documents/gift-test/client'"