-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 817 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 817 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
<html>
<head>
<title>Apollo</title>
<style>body { margin: 0; }</style>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
</head>
<body>
<!-- Attachment point for your app -->
<div id="container"></div>
<!-- <script src="./static_assets/Data.js"></script> -->
<script src="/js/shared/storage.min.js"></script>
<script>
window.Data = new CustomStartStorage();
</script>
<script src="./client.bundle.js"></script>
<script>
// Initialize the React 360 application
React360.init(
'index.bundle.js',
document.getElementById('container'),
{
assetRoot: 'static_assets/',
}
);
</script>
</body>
</html>