import React from 'react'; import { QRCode } from 'react-qr-svg'; import { SessionModal } from './SessionModal'; import { SessionButton } from './SessionButton'; interface Props { value: string; onClose: any; } export class SessionQRModal extends React.Component { constructor(props: any) { super(props); } public render() { const { value, onClose } = this.props; return ( null} onClose={onClose} >

{window.i18n('QRCodeDescription')}

); } }