web-dev-qa-db-ja.com

変数が見つかりません:React

私は反応を学習し始めたばかりなので、これが愚かな質問のように聞こえるかもしれないので、事前に謝罪します。アクションをトリガーするボタンを備えたシンプルなiOSページを作成しようとしています。私はどのように始めるかについてのチュートリアルに従っており、これは私のインデックスコードです:

'use strict';
var React = require('react-native');
var {
  AppRegistry,
  StyleSheet,
  Text,
  View,
  TouchableHighlight,
  Component,
  AlertIOS // Thanks Kent!
} = React;

class myProj extends Component {
 render() {
    return (
      <View style={styles.container}>
        <Text>
          Welcome to React Native!
        </Text>
        <TouchableHighlight style={styles.button}
            onPress={this.showAlert}>
            <Text style={styles.buttonText}>Go</Text>
          </TouchableHighlight>
      </View>
    );
  }

  showAlert() {
    AlertIOS.alert('Awesome Alert', 'This is my first React Native alert.', [{text: 'Thanks'}] )
  }
}

var styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: '#FFFFFF'
  },
  buttonText: {
    fontSize: 18,
    color: 'white',
    alignSelf: 'center'
  },
  button: {
    height: 44,
    flexDirection: 'row',
    backgroundColor: '#48BBEC',
    alignSelf: 'stretch',
    justifyContent: 'center'
  }
});

AppRegistry.registerComponent('myProj', () => myProj);

問題は、デバイスでXcodeから実行すると、

Can't find variable: React
render
main.jsbundle:1509:6
mountComponent
mountChildren

私は答えをオンラインで検索しようとしましたが、実際に役立つものを見つけることができませんでした。ここで何が問題になるのでしょうか?

24
KeykoYume

React Nativeの最新バージョンでは、 'react'パッケージからReactをインポートする必要があります

import React, {Component} from 'react';
import {
View,
...
} from 'react-native';
61
dopcn
import * as React from 'react';
0
Elialber Lopes