React QR Code

Quick Start

Once installed, you can generate a QR code with just a few lines of code:

tsx
1
2import { ReactQRCode } from '@lglab/react-qr-code'
3
4export const Demo = () => {
5 return (
6 <ReactQRCode value='https://reactqrcode.com' />
7 );
8}
9