aboutsummaryrefslogtreecommitdiff
path: root/src/stores/RootStore.ts
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-02-09 17:31:30 -0500
committerTyler Schicke <tyler_schicke@brown.edu>2019-02-09 17:31:30 -0500
commitc06745a99ed85b215d0ae48bfb2af7c955f0b016 (patch)
tree7e7700d5dac882f2a7cfd4e95140858adb8ba6bd /src/stores/RootStore.ts
parentdb177e6ff03a95f0f426943b4b6aaffea77204de (diff)
Removed unused starter project files
Diffstat (limited to 'src/stores/RootStore.ts')
-rw-r--r--src/stores/RootStore.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/stores/RootStore.ts b/src/stores/RootStore.ts
deleted file mode 100644
index 847fb6807..000000000
--- a/src/stores/RootStore.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import { action, observable } from "mobx";
-
-// This globally accessible store might come in handy, although you may decide that you don't need it.
-export class RootStore {
-
- private constructor() {
- // initialization code
- }
-
- private static _instance: RootStore;
-
- public static get Instance(): RootStore {
- return this._instance || (this._instance = new this());
- }
-} \ No newline at end of file