React Native 无法从 'pathToApp.js' 解析模块 X:无法将 'path

  • 本文关键字:模块 path pathToApp Native React js react-native
  • 更新时间 :
  • 英文 :


我的导入语句:

import Stuff from './components/Stuff';

我的目录以 explr 作为父目录布局,组件目录是父目录的直接子目录,而 app.js(导入语句所在的位置)位于父目录中。

我的'东西.jsx':

import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default class Stuff extends React.Component {
  render () {
    return (
      <View style={styles.sidebar} />
    )
  }
}
const styles = StyleSheet.create({
  sidebar: {
    position: 'absolute',
    left: 0,
    top: 20,
    height: '100%',
    width: 200,
    backgroundColor: 'lightslategrey',
    display: 'flex',
    flexDirection: 'column'
  },
})

React Native 不支持导入.jsx文件。 在这里看到我的答案。

相关内容

  • 没有找到相关文章

最新更新