uppy/private/dev/dragdrop.html
Evgenia Karunus 3c0140aa13
Image editor: make compressor work after the image editor, too (#4918)
* Editor.tsx - clean up post typescriptofication

* dev - finally add favicons to avoid errors in the console

* ImageEditor.tsx - reinsert filename after image editor
2024-02-14 15:59:59 +04:00

28 lines
666 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Drag-Drop</title>
<link rel="icon" type="image/png" href="https://uppy.io/img/logo.svg" />
</head>
<body>
<style>
main {
text-align: center;
margin: 20px auto;
max-width: 400px;
}
</style>
<main class="foo">
<h1>Drag-drop is here</h1>
<input type="text" />
<div id="uppyDragDrop"></div>
<div id="uppyDragDrop-progress"></div>
<input type="text" />
</main>
<script src="./index.js" type="module"></script>
</body>
</html>