I am trying to import react-native module into my react app. When I start my app server using 'npm start', I get the following error :
Module not found: Can't resolve 'react-native'
I have done following steps:
- cleaned npm cache using 'npm cache verify'
- deleted node_modules
- rerun the command 'npm install'
- checked package.json file if it has react-native dependency listed
Nothing worked for me. Please help!!
npm install, can you verify if./node_modules/react-nativeexists? - Matthew Herbst