import React from 'react' import ReactDOM from 'react-dom' import QRious from 'qrious' import './base.scss' class Qrgen extends React.Component { constructor (props) { super(props) this.state = { text: 'Hello World!', size: 300 } } componentDidMount () { this.qr = new QRious({ element: this.refs.qr, value: this.state.text, size: this.state.size }) this.refs.qrimg.src = this.qr.toDataURL() } componentDidUpdate (prevProps, prevState) { this.qr.value = this.state.text this.qr.size = this.state.size this.refs.qrimg.src = this.qr.toDataURL() } render () { return
To save the QR code, right-click the image and 'Save Image As', or touch and hold the image on your mobile browser.