aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/publishDebugInfo/store.ts
diff options
context:
space:
mode:
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);