-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 807 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 807 Bytes
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>
<!--For Local Testing-->
<html>
<head>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimal-ui">
<title>Reaz Local Test Run</title>
<style>
html, body, .app-container {
width: 100%;
height: 100%;
padding: 0;
border: none;
margin: 0;
font-family: proxima-nova, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif
}
*:focus {
outline: 0;
}
</style>
</head>
<body>
<div class="app-container"></div>
<!--Split Vendor Code-->
<script src="/static/app/dist/vendor.bundle.js"></script>
<script src="/static/app/dist/bundle.js"></script>
</body>
</html>