UNPKG
react-qrcode-component
Version:
latest (1.0.1)
1.0.1
1.0.0
react qrcode qr.js
react-qrcode-component
/
example
/
app.js
10 lines
(7 loc)
•
201 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
'react'
;
import
ReactDOM
from
'react-dom'
;
import
QRCode
from
'../src'
;
ReactDOM
.
render
(
<
QRCode
value
=
"https://github.com/liuyang1106"
/>
,
document
.
getElementById
(
'qrcode'
) );