render()

in src/components/codePush.tsx [60:77]


  render() {
    let progressView;
    if (this.state.progress) {
      progressView = (
        <Text style={styles.status}>
          {this.state.progress.receivedBytes} of {this.state.progress.totalBytes} bytes received
        </Text>
      );
    }

    return (
      <View style={styles.infoView}>
        <View style={{ flex: 1 }} />
        <Text style={styles.message}>{this.state.syncMessage || ""}</Text>
        {progressView}
      </View>
    );
  }