diff options
author | madelinegr <mgriswold99@gmail.com> | 2019-02-12 19:25:28 -0500 |
---|---|---|
committer | madelinegr <mgriswold99@gmail.com> | 2019-02-12 19:25:28 -0500 |
commit | 837509322d7e556830c57653828e223b06eb38a6 (patch) | |
tree | 0af1076c9535ba6cd912d331ec61bcef951563bb /src/stores/StaticTextNodeStore.ts | |
parent | 1d667d19f5402dc9f9069e0a57008dac96f6de2a (diff) |
fixed bugs with launching
Diffstat (limited to 'src/stores/StaticTextNodeStore.ts')
-rw-r--r-- | src/stores/StaticTextNodeStore.ts | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/stores/StaticTextNodeStore.ts b/src/stores/StaticTextNodeStore.ts deleted file mode 100644 index 7c342a7a2..000000000 --- a/src/stores/StaticTextNodeStore.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { observable } from "mobx"; -import { NodeStore } from "./NodeStore"; - -export class StaticTextNodeStore extends NodeStore { - - constructor(initializer: Partial<StaticTextNodeStore>) { - super(); - Object.assign(this, initializer); - } - - @observable - public Title: string = ""; - - @observable - public Text: string = ""; -}
\ No newline at end of file |