React-Native Invariant Violation: Element type is invalid

后端 未结 4 1773
别跟我提以往
别跟我提以往 2021-01-07 18:41

When I going to run my react native app on my iPhone Expo this error displayed in red background area.

Invariant Violation: Element type is invalid: e

4条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-07 18:59

    In my case instead of exporting like this:

    export default App;
    

    ...I exported like following:

    export {LoginForm};
    

    It worked completely fine.

提交回复
热议问题