I created an RN project and inside it I created a folder called screens .
Inside the screens folder I've created the app.js and home.js
in index.android.js I just gave a: import App from './screens/app';
In app.js I'm using the stackNavigator and gave a import Home from './home'
In home.js I used: import App from './App'
When running, you get an error that can not resolve the App module, in home.js.
I'm kind of lost in organizing the project into folders and importing and navigating between folders.