JSFiddle - React, Tailwind, and code Playground
by 규연 황
HTML
<div id="qrcode"></div>
<script src="https://cdn.rawgit.com/davidshimjs/qrcodejs/gh-pages/qrcode.min.js"></script>
<script type="text/javascript">
// Change String here
new QRCode(document.getElementById("qrcode"), "https://www.naver.com")
</script>
CSS
#qrcode {
width: 100px;
height: 100px;
border: 1px solid red;
}