note-app/notes/index.html

16 lines
355 B
HTML
Raw Normal View History

2024-11-19 20:52:58 -08:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="/src/styles.css" />
2024-11-20 11:47:16 -08:00
2024-11-19 20:52:58 -08:00
<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>