1

为什么我会收到解析错误

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>
    );
  }
}
4

1 回答 1

0

除非您有充分的理由要发送道具,否则您不需要这样做。只需将其删除并保留“组件{}”

此外,您可能需要使用静态而不是类型。如果你从另一个地方复制它,他们可能正在使用 babel 和另一个模块。这是我第一次看到有人写这个。

于 2018-04-18T21:25:53.503 回答