javascript – React-Native Invariant Violation:元素类型无效

前端之家收集整理的这篇文章主要介绍了javascript – React-Native Invariant Violation:元素类型无效前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我要在iPhone Expo上运行我的本机应用程序时,此错误显示在红色背景区域中.

Invariant Violation: Element type is invalid: expected a string (for built-in components)
or a class/function (for composite components) but got: object. You
likely forgot to export your component from the file it’s defined in.

这是’src / components /’文件夹中的App.js

import React,{ Component } from 'react';
import { View,Text } from 'react-native';


export default class App extends Component {
  render() {
    return (
    	<View>
      		<Text>Hello</Text>
      	</View>
    );
  }
}

这是react-native app文件夹中的主要App.js.

import App from './src/components/App';

我使用expo app运行此代码.我该如何解决这个错误

解决方法

Expo希望您从/App.js导出组件.但是现在你只导入到/App.js.世博会没有收到任何要呈现的组件.您需要导出导入的组件,如下所示:
export default App;

另请注意:仅在必要时才使用类组件.

原文链接:https://www.f2er.com/js/158321.html

猜你在找的JavaScript相关文章