1

解析エラーが発生する理由

Parsing error: Unexpected token Props (null)

この反応するネイティブアプリのサンプルコードは? standardJS リンターを使用しています。

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