Ошибка Реагирует Собственное Дубликат Декларации "Приложение" - PullRequest
0 голосов
/ 12 октября 2018

Я получаю эту ошибку

"Не удалось загрузить пакет (ошибка http://localhost:8081/index.bundle?platform=ios$dev=true&minnify=false)with; (index.js: /Users/Floyd/sites/crm.node_modules/react-native/index.js "Дубликат декларации" Приложение "[0m [90 ........

app.js файл

import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View} from 'react-native';

const instructions = Platform.select({
  ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
  android:
    'Double tap R on your keyboard to reload,\n' +
    'Shake or press menu button for dev menu',
});


export default class App extends React.Component {
  render() {
    return (
      <View style={styles.container}>
        <Text style={styles.welcome}>Welcome to The CRM!</Text>
        <Text style={styles.instructions}>To get started, edit App.js</Text>
        <Text style={styles.instructions}>{instructions}</Text>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: '#F5FCFF',
  },
  welcome: {
    fontSize: 20,
    textAlign: 'center',
    margin: 10,
  },
  instructions: {
    textAlign: 'center',
    color: '#333333',
    marginBottom: 5,
  },
});

И index.js файл

import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';

AppRegistry.registerComponent(crm, () => App);

1 Ответ

0 голосов
/ 12 октября 2018

Если вы используете более низкую версию, эта проблема, скорее всего, будет решена.

Версия 0.55.0 в порядке

react-native init --version="react-native@0.55.0" YOUR_APP_NAME
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...