无法解析模块的路径' ./ src / somponents / header' (导入/未解决)| React Native | ESLint

时间:2017-09-02 15:30:06

标签: react-native jsx eslint

我花了很多时间找到这个问题的解决方案,但我找不到完美的答案。

这是header.js文件
我得到" 无法解析模块的路径' ./ src / somponents / header' (进口/无未解决)"在这个文件中。

//  Import Libraries to make components
import React from 'react';
import { Text } from 'react-native';

//  Make a component
const Header = () => {
    return <Text>Albums</Text>;
};

//  Make the component available to the other parts of the app
export default Header;

这是index.android.js文件
我正在&#34; 围绕箭头身体的意外阻止声明&#34;在这个文件附近const App =()=&gt; (

//  Importing the libraries
import React from 'react';
import { AppRegistry } from 'react-native';
import Header from './src/somponents/header';

//  Creating a component
const App = () => (
    <Header />
);

//  Rendering the component
AppRegistry.registerComponent('albums', () => App);

我对React Native完全不熟悉。请帮我解决这个错误。

谢谢

0 个答案:

没有答案