-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.1 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
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="./css/viewer.css" />
<title>bSDD search example</title>
</head>
<body>
<div class="container-fluid h-100">
<div class="row h-100">
<div class="col-sm">
<div id="header" class="row">
<h1>bSDD search component example</h1>
<p>
Check the
<a
href="https://github.com/BIM-Tools/react-bsdd-search"
target="_blank"
>documentation</a
>
for an example how to use this React bSDD search module
</p>
</div>
<div class="overflow-auto" id="bsdd"></div>
</div>
<div class="col-sm overflow-auto" id="viewer">2D view</div>
</div>
</div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>