-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (17 loc) · 610 Bytes
/
index.html
File metadata and controls
20 lines (17 loc) · 610 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" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="robots" content="noindex" />
<meta http-equiv="Permissions-Policy" content="interest-cohort=()" />
<link rel="icon" href="/favicon.ico" />
<link href="/dist/tailwind.css" rel="stylesheet" />
<title>React Clean Architecture</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/index.tsx"></script>
</body>
</html>