'use client'; import { QRCodeSVG } from 'qrcode.react'; import { ModalView } from '@/components/modal1'; import { useDialogsStore } from '@/stores/dialogs'; export interface DlgShowQRProps { target: string; } export function DlgShowQR() { const { target } = useDialogsStore(state => state.props as DlgShowQRProps); return (
); }