反应本地定义道具类型

时间:2018-09-04 03:20:18

标签: javascript react-native react-props

我不知道'<'Props'>'。发现要使用道具,我发现要使用其他道具 为什么道具要使用“ type”和'<'Props'>'?什么意思? 请回答我的问题

type Props = {};
export default class App extends Component<Props> {
  render() {
    return (
      <View style={styles.container}>
        <Text style={styles.welcome}>Welcome to React Native!</Text>
        <Text style={styles.instructions}>To get started, edit App.js</Text>
        <Text style={styles.instructions}>{instructions}</Text>
      </View>
    );
  }
}

2 个答案:

答案 0 :(得分:1)

语法来自“流”。

Flow是javascript的静态类型检查器,有关更多信息,请访问

https://flow.org/en/docs/react/components/

答案 1 :(得分:0)

您可以先删除type Props = {};,然后再在'props'内删除Component<Props>,然后开始编码