默认道具

defaultProps 允许你为组件设置默认 prop 值。在下面的示例中,如果你没有传递名称 props,它将显示 John,否则它将显示传递的值

class Example extends Component {
  render() {
    return (
      <View>
        <Text>{this.props.name}</Text>
      </View>
    )
  }
}

Example.defaultProps = {
  name: 'John'
}