JSFiddle - React, Tailwind, and code Playground

by Nic Fontaine

HTML

<div id="out">

</div>

JavaScript

document.addEventListener("keydown", function(e) {
	document.getElementById("out").innerHTML = e.keyCode
})