React Native Navigation Component Route Issue

前端 未结 4 2058
孤独总比滥情好
孤独总比滥情好 2021-02-12 13:44

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: \

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-12 13:46

    For anyone else coming here, you could be receiving the "The component for route must be a a React Component" error because you don't have a default export, which was the case for me.

    export HomeScreen extends React.Component {
     ...
    

    vs

    export default HomeScreen extends React.Component {
     ...
    

    Hope this helps someone!

提交回复
热议问题