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

后端 未结 7 1072
说谎
说谎 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:45

    Keep the braces intact for your external screen files imports. Just do the following and it should run on both Android and iOS simulators regardless

    // HomeScreen.js
    ... all imports
    export class HomeScreen extends React.Component {
    ...
    

    This fixed the issue for me in both platforms.

提交回复
热议问题