diff options
| author | Josh Kingsley <josh@joshkingsley.me> | 2025-10-25 20:46:35 +0300 |
|---|---|---|
| committer | Josh Kingsley <josh@joshkingsley.me> | 2025-10-25 22:09:48 +0300 |
| commit | 5404a95c15e176d25728bf1a319ddb9828b23625 (patch) | |
| tree | 639d175e15170618d36c0b22b3c8ad7764925175 /web/components/app | |
| parent | 2a4d7a7fc3b968ed8cdfd958a5e65fbe140042da (diff) | |
refactor(web): re-organize files
Diffstat (limited to 'web/components/app')
| -rw-r--r-- | web/components/app/index.ts | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/web/components/app/index.ts b/web/components/app/index.ts deleted file mode 100644 index f4eaff1..0000000 --- a/web/components/app/index.ts +++ /dev/null @@ -1,13 +0,0 @@ -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); |
