Fix Error: The component for route 'Home' must be a React component

后端 未结 7 1089
说谎
说谎 2020-12-19 01:54

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

7条回答
  •  误落风尘
    2020-12-19 02:43

    Since you've mentioned the default, I think that if you change this line:

    import { HomeScreen } from './screens/HomeScreen';
    

    to:

    import HomeScreen from './screens/HomeScreen';
    

    This would solve the issue. Cheers mate!

提交回复
热议问题