gpt4 book ai didi

javascript - 如何修复 React-Native 中的 Error 'You Likely forgot to export your component from the file..etc' 错误?

转载 作者:行者123 更新时间:2023-11-30 19:38:40 25 4
gpt4 key购买 nike

我正在从另一个文件导入组件以在 App.js 文件中实现它,但 Unfornatuley 收到此错误:https://ibb.co/41ynFGX

这里是代码:https:(header.js 文件):

import React from 'react';
import { Text } from 'react-native';

const Header = () => <Text> Hello Ahmed </Text>;


export default Header;

(App.js) 代码:

import React from 'react';
import { View } from 'react-native';
import Header from './src/components/header';

const App = () => (
<View>

<Header />

</View>

);

export default App;

它在这里运行良好(https://snack.expo.io/@ahmed105/tenacious-coffee),但是在我的设备上使用 atom 运行应用程序时出现错误。

我们将不胜感激。

最佳答案

嘿,把你的代码改成这样就可以了。

从“ react ”中导入 react ;从 'react-native' 导入 { Text };

export default Header = () => {
return (
<Text>
Hello Ahmed
</Text>
);
};

关于javascript - 如何修复 React-Native 中的 Error 'You Likely forgot to export your component from the file..etc' 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55661850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com