-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (37 loc) · 1.31 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
<html>
<head>
<title>Opcode Search</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://unpkg.com/react-bootstrap-typeahead/css/Typeahead.css"
/>
<style>
.rbt {
width: 100%;
}
</style>
</head>
<body>
<script src="https://unpkg.com/[email protected]/umd/react.production.min.js"></script>
<script src="https://unpkg.com/[email protected]/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/react-bootstrap-typeahead/dist/react-bootstrap-typeahead.min.js"></script>
<script src="https://unpkg.com/react-copy-to-clipboard/build/react-copy-to-clipboard.js"></script>
<script src="https://unpkg.com/[email protected]/dist/fuse.js"></script>
<script src="index.js"></script>
<div id="app"></div>
<footer class="fixed-bottom text-center py-3">
<small
><a href="https://sannybuilder.com" target="_blank">SannyBuilder.com</a>
<a href="https://github.com/sannybuilder/search" target="_blank"
>Leave feedback
</a>
</small>
</footer>
</body>
</html>