导入反应原生时出现意外的令牌

时间:2017-02-19 19:29:13

标签: android reactjs react-native

我是新手,对本机做出反应,并且在将基本组件导入index.android.js文件时遇到问题。我找不到有什么问题,也找不到这个具体问题的帖子。请帮助解决问题。

错误说:CounterComponent.android.js第7行附近的意外令牌。用**标记。

import React, { Component } from 'react';
import { AppRegistry, ListView, Text, View } from 'react-native';

export default class Counter extends Component {
    render() {
        return{
            **<View>**
                <Text>Counter component</Text>
            </View>
    };

    }
}

使用index.android.js

中的以下命令导入文件
import Counter from './app/components/CounterComponent'

1 个答案:

答案 0 :(得分:0)

请在返回后尝试将{替换为(,如下所示:

import React, { Component } from 'react';
import { AppRegistry, ListView, Text, View } from 'react-native';

export default class Counter extends Component {
    render() {
        return (
            <View>
                <Text>Counter component</Text>
            </View>
        );

    }
}