'use client'; import clsx from 'clsx'; import { QRCodeSVG } from 'qrcode.react'; import Modal, { ModalProps } from '@/components/ui/Modal'; interface DlgShowQRProps extends Pick { target: string; } function DlgShowQR({ hideWindow, target }: DlgShowQRProps) { return (
); } export default DlgShowQR;