-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (19 loc) · 646 Bytes
/
index.html
File metadata and controls
20 lines (19 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ReacType</title>
<link
rel="stylesheet"
type="text/css"
href="./app/src/public/styles/style.css"
/>
<link href="/app/src/public/icons/win/light-mode.ico" rel="icon" media="(prefers-color-scheme: light)">
<link href="/app/src/public/icons/win/dark-mode.ico" rel="icon" media="(prefers-color-scheme: dark)">
</head>
<body>
<main id="app"></main>
<script type="module" src="./app/src/index.tsx"></script>
</body>
</html>