JSFiddle - React, Tailwind, and code Playground
by shatul patil
HTML
<script src="http://davidshimjs.github.io/qrcodejs/qrcode.min.js"></script>
<input id="text" type="text" value="kylespice.com?cumin" />
<div id="qrcode"></div>
JavaScript
var qrcode = new QRCode("qrcode");
$("#text").on("keyup", function () {
qrcode.makeCode($(this).val());
}).keyup().focus();