summaryrefslogtreecommitdiff
path: root/web/components/app/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'web/components/app/index.ts')
-rw-r--r--web/components/app/index.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/web/components/app/index.ts b/web/components/app/index.ts
new file mode 100644
index 0000000..f4eaff1
--- /dev/null
+++ b/web/components/app/index.ts
@@ -0,0 +1,13 @@
+import ntvGrid from "../grid";
+
+class NotiveAppElement extends HTMLElement {
+ connectedCallback() {
+ this.append(
+ ...window.notive.doc.grids.map((_grid) => {
+ return ntvGrid({ foo: "1" });
+ }),
+ );
+ }
+}
+
+customElements.define("ntv-app", NotiveAppElement);