我创建了一个新的RN项目。当我尝试运行它时,出现以下错误。
错误:SyntaxError: /home/shashika/PROJECTS/developer-connector/mobile/src/app.tsx: 意外令牌(13:2)
import React from 'react';
import { View, Text } from 'react-native';
const App = () => (
<View>
<Text>Developer Connector</Text>
</View>
);
export default App;
这说明了什么?对我来说,代码似乎合法。