diff options
Diffstat (limited to 'components/globalState.tsx')
-rw-r--r-- | components/globalState.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/globalState.tsx b/components/globalState.tsx index 5b01947..0ec7838 100644 --- a/components/globalState.tsx +++ b/components/globalState.tsx @@ -6,9 +6,9 @@ type globalState = { on: boolean; time: number; useForBoth: boolean; - } + }; rankedGame: boolean; - } -} + }; +}; export var GlobalStateContext = React.createContext(); |