lume/apps/desktop2/index.html

15 lines
454 B
HTML
Raw Normal View History

2024-02-11 02:30:18 +00:00
<!doctype html>
<html lang="en">
2024-02-14 01:29:24 +00:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lume Desktop</title>
</head>
<body
2024-03-14 07:22:41 +00:00
class="relative h-screen w-screen cursor-default select-none overflow-hidden font-sans text-black antialiased dark:text-white"
2024-02-14 01:29:24 +00:00
>
<div id="root" class="h-full w-full"></div>
<script type="module" src="/src/app.tsx"></script>
</body>
</html>