From 88e2726fc1fc6cec2b9e63526ce4c0a1a04a2e98 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Fri, 1 Mar 2024 18:39:11 -0500 Subject: Add new frontend --- fig-frontend/client/src/state.ts | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 fig-frontend/client/src/state.ts (limited to 'fig-frontend/client/src/state.ts') diff --git a/fig-frontend/client/src/state.ts b/fig-frontend/client/src/state.ts deleted file mode 100644 index 19bc5d9..0000000 --- a/fig-frontend/client/src/state.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { observable, action } from 'mobx'; - -class Global { - @observable - public gizmo_active: boolean = true; - - @action - public toggle_gizmo() { - this.gizmo_active = !this.gizmo_active; - } -} - -export const global = new Global(); -- cgit v1.2.3