Files
Windows-11-Clipboard-Histor…/index.html
2025-12-11 01:58:08 -03:00

25 lines
585 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Clipboard History</title>
<style>
/* Prevent flash of white during load */
html {
background: transparent;
}
body {
margin: 0;
padding: 0;
background: transparent;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>