const Component = require('react').Component const h = require('react-hyperscript') const inherits = require('util').inherits const connect = require('react-redux').connect const CopyButton = require('./copyButton') module.exports = connect(mapStateToProps)(QrCodeView) function mapStateToProps (state) { return { Qr: state.appState.Qr, buyView: state.appState.buyView, } } inherits(QrCodeView, Component) function QrCodeView () { Component.call(this) } QrCodeView.prototype.render = function () { var props = this.props var Qr = props.Qr return h('.main-container.flex-column', { style: { justifyContent: 'center', padding: '45px', alignItems: 'center', }, }, [ h('h3', Qr.message), h('#qr-container.flex-column', { key: 'qr', style: { marginTop: '25px', marginBottom: '15px', }, dangerouslySetInnerHTML: { __html: Qr.image, }, }), h('.flex-row', [ h('h3.ellip-address', Qr.data), h(CopyButton, { value: Qr.data, }), ]), ]) }