uppy/private/dev/dragdrop.html
Prakash 5519b84409
@uppy: upgrade biome and more improvements (#6244)
- This PR upgrades `biome` from `2.0.5` -> `2.1.2` and adds two new
rules
-
[noUnusedImports](https://biomejs.dev/linter/rules/no-unused-private-class-members)
( we already had suppressions for this rule in code, but the rule itself
was never enabled in the config )
-
[noUnusedPrivateClassMembers](https://biomejs.dev/linter/rules/no-unused-private-class-members/)
- remove stale suppressions. 
- remove stale code.

---------

Co-authored-by: Mikael Finstad <finstaden@gmail.com>
2026-05-21 12:28:03 +08:00

28 lines
676 B
HTML

<!doctype html>
<html lang="en">
<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>