How to use the metronome-wallet-ui-logic/src/hocs/withReceiptState function in metronome-wallet-ui-logic

To help you get started, we’ve selected a few metronome-wallet-ui-logic examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github autonomoussoftware / metronome-wallet-desktop / src / components / dashboard / ReceiptModal.js View on Github external
disabled={this.props.refreshStatus === 'pending'}
            onClick={this.props.onRefreshRequest}
          >
            {this.props.refreshStatus === 'pending' ? 'Syncing...' : 'Refresh'}
          
        }
        isOpen={this.props.isOpen}
        title="Receipt"
      >
        
      
    )
  }
}

export default withReceiptState(ReceiptModal)