// @flow import React from 'react'; import QRCodeElement from 'qrcode.react'; type Props = { value: string, }; const QRCode = (props: Props) => { const { value } = props; return (