JSFiddle - React, Tailwind, and code Playground

by Farzad YZ

HTML

<div contenteditable id="t" ></div>

CSS

div {
  border: 1px solid;
  width: 100%;
  height: 200px;
}

JavaScript

const $t = document.getElementById('t');

$t.addEventListener('paste', e => {
  e.preventDefault();
  e.stopPropagation();
  console.log(e.clipboardData.types, e.clipboardData.items[0].getAsFile())
}, true)