aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/publishDebugInfo/store.ts
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-02 09:24:32 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-02 09:24:32 +0200
commitbfe8847d72cd0893230f2e654242658214943e61 (patch)
tree3384b02ebad7a74cbb106ddd95546e0e24ff0bb8 /src/features/publishDebugInfo/store.ts
parentfix: Fix navigation shortcut accelerator for non-macos (fixes #1172) (#2012) (diff)
downloadferdium-app-bfe8847d72cd0893230f2e654242658214943e61.tar.gz
ferdium-app-bfe8847d72cd0893230f2e654242658214943e61.tar.zst
ferdium-app-bfe8847d72cd0893230f2e654242658214943e61.zip
chore: convert various files from JS to TS (#2010)
Diffstat (limited to 'src/features/publishDebugInfo/store.ts')
-rw-r--r--src/features/publishDebugInfo/store.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/features/publishDebugInfo/store.ts b/src/features/publishDebugInfo/store.ts
new file mode 100644
index 000000000..ed06e5a7d
--- /dev/null
+++ b/src/features/publishDebugInfo/store.ts
@@ -0,0 +1,7 @@
1import { observable } from 'mobx';
2
3const defaultState = {
4 isModalVisible: false,
5};
6
7export const state = observable(defaultState);