JSFiddle - React, Tailwind, and code Playground

by nkovacs

JavaScript

document.addEventListener('dragover', function(e) {
    e.preventDefault();
});

document.addEventListener('drop', function (e) {
    e.preventDefault();
    e.dataTransfer.items[0].webkitGetAsEntry().file(
        function (file) {
            console.log(file);
        },
        function (error) {
            console.log(error);
        }
    );
});