This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
67 lines (50 loc) · 2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!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>@tenoxui/property | nousantx</title>
<meta name="description" content="@tenoxui/property simple usage for development." />
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/@tenoxui/property"></script>
</head>
<body class="m-0 family-[sans-serif] bg-#14161b tc-#e4e5e9">
<main class="w-mx-1440px mx-auto p-2rem">
<header>
<h1>It's tenoxui/property</h1>
<p class="mt-8px">Hello, ignore this message, and use tenoxui instead :D</p>
<div class="mt-2rem">
<p>Install :</p>
<code class="d-block bg-[rgba(49,54,65,0.30)] p-8px br-2px">
npm i tenoxui @tenoxui/property --save-dev
</code>
<code class="d-block mt-1.5rem bg-[rgba(49,54,65,0.30)] p-8px br-2px lh-1.5">
import tenoxui, { use } from "tenoxui";
<br />
import property from "@tenoxui/property";
</code>
<p class="my-1.5rem pl-1rem">or cdn :</p>
<code class="d-block bg-[rgba(49,54,65,0.30)] p-8px br-2px lh-1.5">
<script src="https://cdn.jsdelivr.net/npm/tenoxui"></script>
<br />
<script src="https://cdn.jsdelivr.net/npm/@tenoxui/property"></script>
</code>
<p class="mt-1.5rem">Usage example :</p>
<code class="d-block bg-[rgba(49,54,65,0.30)] p-8px br-2px lh-1.5">
<script>
<br />
use({ property: [property] }); // use property
<br />
tenoxui(); // init tenoxui
<br />
</script>
</code>
</div>
</header>
</main>
<script>
tenoxui(property);
</script>
</body>
</html>