0
我正處於在iOS中使用ReactNative的學習階段。所以目前我已經完成了所有的初始設置,現在我正在學習基本教程。 React Native在iOS中使用原生反應時出現意外字符「
但我收到以下錯誤。
相關的js文件的代碼是在這裏
// src/ReactCalculator.js
import React, { Component } from 'react';
import {
Text,
AppRegistry
} from 'react-native';
class ReactCalculator extends Component {
render() {
return (
<Text>Hello, React!</Text>
)
}
}
AppRegistry.registerComponent(‘reactTutorialApp’,() => ReactCalculator);
請幫我的情況。
謝謝!我接受了你的回答...... –