RN文件导入错误

时间:2017-01-08 23:27:18

标签: import react-native

我遇到了native native的文件导入问题,最初我认为可能有一个特殊的文件系统管理器用于本机反应,但当我将我的样式分解为一个单独的application.js文件并导入它时,它工作正常,但是,当我尝试导入我的root.jsx时,它会抛出此错误,

'Unable to resolve module ./react/components/root.jsx from
/Users/******/Desktop/Kaffeinate/index.ios.js: Directory
/Users/******/Desktop/Kaffeinate/react/components/root.jsx doesnt exist'

我试过重启xcode和atom但无济于事。

这是我的index.ios.js,

index.ios.js

这是我的root.jsx,

import React from 'react';
// import { Provider } from 'react-redux';
// import App from './app.jsx';
// import configureStore from '../store/store.js';
import {
  View,
  Text
} from 'react-native';

export default class Root extends React.Component {
  render(){
    return (
      <View>
        <Text>
          Inside App.
        </Text>
      </View>
    );
  }
}

0 个答案:

没有答案