import React from 'react'; import { QRCode } from 'react-qr-svg'; import { SessionModal } from './SessionModal'; import { SessionButton } from './SessionButton'; import { SessionHtmlRenderer } from './SessionHTMLRenderer'; interface Props { value: string; onClose: any; } export class SessionQRModal extends React.Component { constructor(props: any) { super(props); } public render() { const { value, onClose } = this.props; // Foreground equivalent to .session-modal background color const bgColor = '#FFFFFF'; const fgColor = '#1B1B1B'; return ( null} onClose={onClose} >
); } }