-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
29 lines (25 loc) · 1.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html class="fullHeight">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no" />
<meta name="theme-color" content="#242424" />
<link rel="manifest" href="manifest.json"> <!-- https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/ -->
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" sizes="76x76" href="apple-icon.png">
<!-- Fonts and icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<title>Hello React!</title>
</head>
<body class="fullHeight">
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root" class="fullHeight"></div>
<!-- Direct dependencies (optional). This way these dependencies can be cashed by the browser. -->
<script src="node_modules/react/umd/react.development.js"></script>
<script src="node_modules/react-dom/umd/react-dom.development.js"></script>
<!-- <script src="/bundle.js"></script>-->
</body>
</html>