forked from ral-facilities/scigateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.16 KB
/
Copy pathindex.html
File metadata and controls
35 lines (32 loc) · 1.16 KB
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
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="/favicon.ico?v=2" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="theme-color" content="#000000" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="/manifest.json" />
<title>SciGateway</title>
</head>
<body>
<script crossorigin src="https://unpkg.com/react@18/umd/react.production.min.js"></script>
<script>
window.React ||
document.write('<script src="/react.production.min.js">\x3C/script>');
</script>
<script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script>
<script>
window.ReactDOM ||
document.write(
'<script src="/react-dom.production.min.js">\x3C/script>'
);
</script>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="scigateway"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>