JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<body>
<div contenteditable="true">Hello</div>
</body>
</html>
JavaScript
const editor = document.querySelector('div')
editor.addEventListener('beforeinput', event => {
console.log(event.inputType)
event.preventDefault()
})