'use client' import React from 'react' import { QRCodeUpload } from '@/components/QRCodeUpload' import type { VocabWorksheetHook } from '../types' export function QRCodeModal({ h }: { h: VocabWorksheetHook }) { const { isDark } = h return (
h.setShowQRModal(false)} />
h.setShowQRModal(false)} onFilesChanged={(files) => { h.setMobileUploadedFiles(files) if (files.length > 0) { h.setSelectedMobileFile(files[files.length - 1]) h.setDirectFile(null) h.setSelectedDocumentId(null) } }} />
) }