'use client'; import { createLazyComponent } from '../../../common/lazy-wrapper'; import type { QRCodeProps } from './types'; export const LazyQRCode = createLazyComponent( () => import('./QRCode').then((mod) => ({ default: mod.QRCode })), { displayName: 'LazyQRCode', fallback: (
), } ); export type { QRCodeProps } from './types';