From 5404a95c15e176d25728bf1a319ddb9828b23625 Mon Sep 17 00:00:00 2001 From: Josh Kingsley Date: Sat, 25 Oct 2025 20:46:35 +0300 Subject: refactor(web): re-organize files --- web/components/grid/index.ts | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 web/components/grid/index.ts (limited to 'web/components/grid/index.ts') diff --git a/web/components/grid/index.ts b/web/components/grid/index.ts deleted file mode 100644 index 7faf6b1..0000000 --- a/web/components/grid/index.ts +++ /dev/null @@ -1,14 +0,0 @@ -import h, { type CreateElement } from "../../html"; - -class NotiveGridElement extends HTMLElement { - foo: string; - - connectedCallback() { - this.appendChild(h.p("OK: " + this.foo)); - } -} - -customElements.define("ntv-grid", NotiveGridElement); - -export default ((...args: any[]): NotiveGridElement => - (h as any)["ntv-grid"](...args)) as CreateElement; -- cgit v1.2.3