import QRCode from 'qrcode'; export const generateQRCode = async (url: string) => { const qrCode = await QRCode.toDataURL(url); return qrCode; };