sentikit-webcomponents 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # sentikit-webcomponents
2
+
3
+ Sentikit webcomponents
4
+
5
+ ## Features
6
+
7
+ - WebComponents
8
+ - Unit testing via Jest
9
+ - ESM
10
+
11
+ ## Install
12
+
13
+ ```sh
14
+ npm i sentikit-webcomponents
15
+ // or
16
+ yarn add sentikit-webcomponents
17
+ ```
18
+
19
+ ### Usage
20
+
21
+ ```js
22
+ import { PreviewSkBreadcrumbs } from 'sentikit-webcomponents';
23
+
24
+ const previewSk = new PreviewSkBreadcrumbs();
25
+
26
+ document.body.appendChild(previewSk);
27
+ ```