-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.19 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
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,400i,700,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/styles.css">
<title>Web Chat App</title>
</head>
<body>
<div id="chat-web-app">
<div class="sidebar">
<app-brand></app-brand>
<authed-user hidden></authed-user>
<chats-list></chats-list>
</div>
<chat-box hidden></chat-box>
</div>
<script src="components/component.js"></script>
<script src="scripts/recorder.js"></script>
<script src="scripts/data-factory.js"></script>
<script src="scripts/chat-app.js"></script>
<script src="components/authed-user.js"></script>
<script src="components/app-brand.js"></script>
<script src="components/chats-list.js"></script>
<script src="components/active-chat.js"></script>
<script src="components/new-message.js"></script>
<script src="components/chat-message.js"></script>
<script src="components/chat-box.js"></script>
<script src="components/chat-list-item.js"></script>
<script src="scripts/index.js"></script>
</body>
</html>