diff options
Diffstat (limited to 'src/state/shell/shell-layout.tsx')
-rw-r--r-- | src/state/shell/shell-layout.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/state/shell/shell-layout.tsx b/src/state/shell/shell-layout.tsx index a58ba851c..39f69cfff 100644 --- a/src/state/shell/shell-layout.tsx +++ b/src/state/shell/shell-layout.tsx @@ -12,12 +12,20 @@ const stateContext = React.createContext<StateContext>({ addListener() {}, removeListener() {}, modify() {}, + get() { + return 0 + }, + set() {}, }, footerHeight: { value: 0, addListener() {}, removeListener() {}, modify() {}, + get() { + return 0 + }, + set() {}, }, }) |