forked from SSShooter/mind-elixir-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
39 lines (35 loc) · 792 Bytes
/
test.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Mind Elixir</title>
<style>
/* test tailwind compatibility */
*,
::before,
::after {
box-sizing: border-box;
border-width: 0;
border-style: solid;
border-color: #e5e7eb;
}
#map,
#map2 {
margin-top: 30px;
height: 300px;
width: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<div id="map2"></div>
<script type="module">
import MindElixir from '/src/index.ts'
window.MindElixir = MindElixir
window.E = MindElixir.E
</script>
</body>
</html>