// import React from 'react'; import { QRCodeCanvas } from 'qrcode.react'; import { useAppSelector } from '../../app/store'; type Props = { link: string } const QRCode = ({ link }: Props) => { const logo = useAppSelector(store => store.server.logo); return ( ); }; export default QRCode;