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

后端 未结 7 1077
说谎
说谎 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:44

    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';
    with

    import  HomeScreen  from './screens/HomeScreen';

提交回复
热议问题