-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (28 loc) · 879 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dash</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="./src/styles/main.css" />
</head>
<body>
<div id="app">
<fancy-tabs>
<button slot="tab" tabId="appointments" active>Appointments</button>
<div id="appointment-container" slot="panel">
</div>
<button slot="tab" tabId="professionals">Professionals</button>
<div slot="panel">
Panel 2
</div>
<button slot="tab" tabId="statistics">Statistics</button>
<div slot="panel">
Panel 3
</div>
</fancy-tabs>
</div>
<script type="text/javascript" src="./src/ts/index.ts"></script>
</body>
</html>