mirror of
https://github.com/lumehq/lume.git
synced 2025-03-17 05:11:53 +01:00
15 lines
437 B
HTML
15 lines
437 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Lume Desktop</title>
|
|
</head>
|
|
<body
|
|
class="relative h-screen w-screen cursor-default select-none overflow-hidden font-sans text-black antialiased dark:text-white"
|
|
>
|
|
<div id="root" class="h-full w-full"></div>
|
|
<script type="module" src="/src/app.tsx"></script>
|
|
</body>
|
|
</html>
|