personal-tracker/client/index.html

14 lines
366 B
HTML
Raw Normal View History

2024-05-08 15:26:36 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2024-05-10 01:01:13 +00:00
<title>Personal Tracker</title>
2024-05-08 15:26:36 +00:00
</head>
<body>
2024-05-10 01:01:13 +00:00
<noscript>Javascript is required for this website</noscript>
2024-05-08 15:26:36 +00:00
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>