为什么我会收到解析错误
Parsing error: Unexpected token Props (null)
对于这个反应原生应用程序示例代码?我正在使用standardJS linter。
import React, { Component } from 'react';
import {
Text,
View
} from 'react-native';
type Props = {}; // <-- What is wrong with that?
export default class App extends Component<Props> {
render() {
return (
<View>
<Text>
Welcome to React Native!
</Text>
</View>
);
}
}