social-network
social-network/frontend/index.html
1
<!DOCTYPE html>
2
<html lang="en">
3
	<head>
4
		<meta charset="UTF-8">
5
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
6
		<script type="importmap">
7
			{
8
				"imports": {
9
					"react": "https://esm.sh/react@18.2.0",
10
					"react-dom": "https://esm.sh/react-dom@18.2.0",
11
					"react-use-promise": "https://esm.sh/react-use-promise@0.5.0",
12
					"htm": "https://esm.sh/htm@3.1.1",
13
					"rxjs": "https://esm.sh/rxjs@7.8.1",
14
					"rxjs/operators": "https://esm.sh/rxjs@7.8.1/operators",
15
					"immer": "https://esm.sh/immer@10.1.1",
16
					"appsync-subscription-observable": "https://esm.sh/appsync-subscription-observable@1.2.1"
17
				}
18
			}
19
		</script>
20
		<link href="https://esm.sh/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
21
		<link href="style.css" rel="stylesheet">
22
	</head>
23
	<body>
24
		<div id="content"></div>
25
		<script type="module" src="index.mjs"></script>
26
	</body>
27
</html>
28
29