-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (30 loc) · 948 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Item NBT to Components (Minecraft 1.20.5)</title>
</head>
<body>
<header>
<h2>Item NBT → Components</h2>
<a href="https://minecraft.wiki/w/Item_format/1.20.5#Data_components" target="_blank">[wiki]</a>
</header>
<main>
<div class="text-container">
<textarea id="input" cols="30" rows="4"></textarea>
<span class="input-clear overlay">[clear]</span>
</div>
<div class="tabs">
<span class="tab selected">JSON</span>
<span class="tab">Command</span>
<span class="tab selected">SNBT</span>
</div>
<div class="text-container">
<textarea id="output" cols="30" rows="20" readonly></textarea>
<span class="output-copy overlay">[copy]</span>
</div>
</main>
<script type="module" src="/src/main.ts"></script>
</body>
</html>