diff options
| author | Josh Kingsley <josh@joshkingsley.me> | 2025-10-25 22:05:04 +0300 |
|---|---|---|
| committer | Josh Kingsley <josh@joshkingsley.me> | 2025-10-25 22:10:04 +0300 |
| commit | 1b8d05bf83d7bd9ab425852f519ea81bdc379444 (patch) | |
| tree | a2555ce10f3c607c6809d020ba4d31fa3c05c7fb /web/src/components/app/index.ts | |
| parent | 5404a95c15e176d25728bf1a319ddb9828b23625 (diff) | |
feat(web): render and draw grid
Diffstat (limited to 'web/src/components/app/index.ts')
| -rw-r--r-- | web/src/components/app/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
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 }); }), ); } |
