这里是代码 index.js
从'react'导入React; 从'react-native'导入{视图、文本、图像背景}; 从“../StyledButton”导入 StyledButton; //这里是问题 从'./style'导入样式;
const CarItem = (道具) => (
<ImageBackground
source={require('../../assets/tesla/6.jpg')}
style={styles.image} />
<View style={styles.titles}>
<Text style={styles.title}> Model G </Text>
<Text style={styles.subtitles}> Starting from $50,000 </Text>
</View>
<StyledButton/>
</View>
); 导出默认 CarItem;
这是错误的帮助 无法从 C:\Users\Sufyyan\TeslaClone\Components\CarItem\index.js 解析模块 ../StyledButton:
这些文件都不存在:
3 |从“../StyledButton”导入 StyledButton; | ^ 4 |从'./style'导入样式; 5 | 6 | const CarItem = (props) => {