-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
48 lines (43 loc) · 1.22 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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Scoutbar</title>
<!-- CSS only -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
</head>
<body>
<div class="text-center mt-5">
<img
src="https://i.ibb.co/xLHPc9W/Screenshot-2021-11-19-at-11-10-56-PM.png"
width="70"
/>
<h1 class="mt-4">Scoutbar Test</h1>
<p>Click CMD + K to trigger search</p>
</div>
<div class="card card-body col-md-4 m-auto mt-5">
<h4>PS!!</h4>
<h6>
This test environment uses
<a href="https://caniuse.com/import-maps" class="text-success"
>https://caniuse.com/import-maps</a
>
so make sure you are on an environment that supports this
</h6>
</div>
<div id="app"></div>
<script type="importmap" defer>
{
"imports": {
"react-dom": "https://cdn.skypack.dev/react-dom",
"react": "https://cdn.skypack.dev/react"
}
}
</script>
<script type="module" src="/dist/scout-bar/test.js"></script>
</body>
</html>