aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/shareFranz/store.js
diff options
context:
space:
mode:
authorLibravatar Markandan R <rmarkandan@yahoo.com>2021-06-22 10:56:34 +0530
committerLibravatar GitHub <noreply@github.com>2021-06-22 10:56:34 +0530
commita94ed659846f0bc93c05bccf0c96785b91e5c78f (patch)
tree0a50eeb85e9043708936da9a0c923b32edbe8ab9 /src/features/shareFranz/store.js
parentDowngraded submodule 'src/internal-server' (diff)
downloadferdium-app-a94ed659846f0bc93c05bccf0c96785b91e5c78f.tar.gz
ferdium-app-a94ed659846f0bc93c05bccf0c96785b91e5c78f.tar.zst
ferdium-app-a94ed659846f0bc93c05bccf0c96785b91e5c78f.zip
Removed the cyclical dependency (#1519) (#1539)
Diffstat (limited to 'src/features/shareFranz/store.js')
-rw-r--r--src/features/shareFranz/store.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/features/shareFranz/store.js b/src/features/shareFranz/store.js
new file mode 100644
index 000000000..c637e9eff
--- /dev/null
+++ b/src/features/shareFranz/store.js
@@ -0,0 +1,8 @@
1import { observable } from 'mobx';
2
3const defaultState = {
4 isModalVisible: false,
5 lastShown: null,
6};
7
8export const state = observable(defaultState);