note-app/notes/index.html
2024-11-23 16:48:06 -08:00

16 lines
355 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="/src/styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Notes</title>
<script type="module" src="/src/main.tsx" defer></script>
</head>
<body>
<div id="editor"></div>
</body>
</html>