-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbench.html
More file actions
49 lines (49 loc) · 1.31 KB
/
bench.html
File metadata and controls
49 lines (49 loc) · 1.31 KB
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
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="version" content="1" />
<title>Mini-React Hooks</title>
<link
rel="preload"
href="fonts/glyphicons-halflings-regular.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<link href="css/bootstrap.min.css" rel="stylesheet" />
<style>
body {
padding: 10px 0 0 0;
margin: 0;
overflow-y: scroll;
}
#duration {
padding-top: 0px;
}
.jumbotron {
padding-top: 10px;
padding-bottom: 10px;
}
.test-data a {
display: block;
}
.preloadicon {
position: absolute;
top: -20px;
left: -20px;
}
.col-sm-6.smallpad {
padding: 5px;
}
.jumbotron .row h1 {
font-size: 40px;
}
</style>
<script type="module" src="dist/bench.js"></script>
</head>
<body>
<div id="root"></div>
</body>
</html>