uppy/private/dev/dragdrop.html
Antoine du Hamel b0bf1a3eb4
meta: move dev workspace to private/ (#3368)
* meta: move dev workspace to `private/`

* `DragDrop.html` -> `dragdrop.html`
2021-12-14 12:53:34 +01:00

27 lines
583 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Drag-Drop</title>
</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>