summaryrefslogtreecommitdiff
path: root/web/src/components/app/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/components/app/index.ts')
-rw-r--r--web/src/components/app/index.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/web/src/components/app/index.ts b/web/src/components/app/index.ts
index 2782e22..910aa52 100644
--- a/web/src/components/app/index.ts
+++ b/web/src/components/app/index.ts
@@ -1,9 +1,12 @@
+import h from "../../html";
import ntvGrid from "../grid";
+import ntvToolbar from "../toolbar";
import "./index.css";
class NotiveAppElement extends HTMLElement {
connectedCallback() {
this.append(
+ ntvToolbar(),
...window.notive.doc.grids.map((grid) => {
return ntvGrid({ gridId: grid.id });
}),