New react native user here. I\'m running into an issue and I am not sure how to proceed. I was able to get react-navigation running properly and then began receiving an error: \
I think the problem is with home.js since you aren't exporting it. Try this :
export default class Home extends Component { ... } ^^^^^^^^^^^^^^
Add those or just add
export default Home;
at the end of the home.js file
home.js