无法在React Native项目中找到意外令牌

时间:2016-09-23 19:12:02

标签: react-native

使用非常简单的代码启动我的应用,但Invoke-Command -ComputerName <hostname> -ScriptBlock {Schtasks.exe /Run /TN "RunQVDUpdate"}

SyntaxError /Users/user/myApp/index.ios.js: Unexpected token (7:6)

无法理解我的错误在哪里。我尝试了import React, { Component } from 'react'; import { AppRegistry, Text } from 'react-native'; class HelloWorldApp extends Component { render() { return ( <Text>Hello world!</Text> ); } } AppRegistry.registerComponent('HelloWorldApp', () => HelloWorldApp); rm -rf node_modules,尝试npm installnpm chache clen,但仍然收到错误。

2 个答案:

答案 0 :(得分:1)

当我意外地从另一个项目添加.babelrc文件时,我得到了这个。取下它,包装工人又开始工作了。

答案 1 :(得分:0)

您需要使用View包装Text组件。 <Text>不能用作根组件