I\'m trying to used react-navigation but I can not get it to work when I move each screens\' components into multiple files. I always get this error: \"The component for ro
I think that react is having a problem figuring out what to import Since you're exporting one thing by default You should replace
import { HomeScreen } from './screens/HomeScreen';
import HomeScreen from './screens/HomeScreen';