"use client"; import { QRCodeSVG } from "qrcode.react"; interface QRCodeDisplayProps { url: string; size?: number; } export default function QRCodeDisplay({ url, size = 200 }: QRCodeDisplayProps) { return (

{url}

); }