From 1b8d05bf83d7bd9ab425852f519ea81bdc379444 Mon Sep 17 00:00:00 2001 From: Josh Kingsley Date: Sat, 25 Oct 2025 22:05:04 +0300 Subject: feat(web): render and draw grid --- web/src/components/app/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'web/src/components/app') diff --git a/web/src/components/app/index.ts b/web/src/components/app/index.ts index 5967a46..2782e22 100644 --- a/web/src/components/app/index.ts +++ b/web/src/components/app/index.ts @@ -4,8 +4,8 @@ import "./index.css"; class NotiveAppElement extends HTMLElement { connectedCallback() { this.append( - ...window.notive.doc.grids.map((_grid) => { - return ntvGrid(); + ...window.notive.doc.grids.map((grid) => { + return ntvGrid({ gridId: grid.id }); }), ); } -- cgit v1.2.3