trailbase/examples/collab-clicker-ssr/index.html
Sebastian Jeltsch c3a81d7359 Clean up examples and tutorials as well as minor doc tweaks.
Also add a reconnect loop to collab clicker.
2025-01-24 14:26:16 +01:00

19 lines
539 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TrailBase Clicker</title>
<!--app-data-->
<!--app-head-->
</head>
<body class="flex flex-col items-center min-h-[100dvh]">
<div id="root" class="max-w-[1280px] my-auto text-center">
<!--app-html-->
</div>
<script type="module" src="/src/entry-client.tsx"></script>
</body>
</html>