summaryrefslogtreecommitdiff
path: root/fig-frontend/client/src/components/gizmo.ts
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2024-03-01 18:39:11 -0500
committerLLLL Colonq <llll@colonq>2024-03-01 18:39:11 -0500
commit88e2726fc1fc6cec2b9e63526ce4c0a1a04a2e98 (patch)
tree94fd56c8c02e422a54d69aa7dec798b7a55d6a2d /fig-frontend/client/src/components/gizmo.ts
parent4a23754fc6515c947e0bbac38cd0e558b701fe2f (diff)
Add new frontend
Diffstat (limited to 'fig-frontend/client/src/components/gizmo.ts')
-rw-r--r--fig-frontend/client/src/components/gizmo.ts34
1 files changed, 0 insertions, 34 deletions
diff --git a/fig-frontend/client/src/components/gizmo.ts b/fig-frontend/client/src/components/gizmo.ts
deleted file mode 100644
index bd1285c..0000000
--- a/fig-frontend/client/src/components/gizmo.ts
+++ /dev/null
@@ -1,34 +0,0 @@
-import { MobxLitElement } from "@adobe/lit-mobx";
-import { html, css } from "lit";
-import { customElement } from "lit/decorators.js";
-
-import * as State from "../state";
-
-@customElement("fig-gizmo")
-export class Gizmo extends MobxLitElement {
- private global = State.global;
-
- static style = css`
-`;
-
- static get(id: string): Gizmo | null {
- const e = document.getElementById(id);
- if (e instanceof Gizmo) return e;
- return null;
- }
-
- constructor() {
- super();
- }
-
- render() {
- console.log("render", this.global.gizmo_active);
- if (this.global.gizmo_active) {
- return html`
-<fig-window>
-<h1>hi</h1>
-</fig-window>
-`;
- }
- }
-}