I am getting this error whenever I try to import a new js page. I am fairly new to react-native so this might be an easy error to fix or it might be a bug on their side at the moment, I am not sure. This is my import line -> import Home from 'Home'; Both files are in the same directory. The error I get is it says
unable to resolve module 'Home' from 'path/App.js' : Module does not exist in the module map'.
Now what confuses me is that the path on the error is App.js when I am trying to specify a file called Home.js.
import Home from './Home';