blob: 5b019479a85e05d499ccd7b8c83c0c449ae22c2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import React from 'react';
type globalState = {
gameSettings: {
timeLimit: {
on: boolean;
time: number;
useForBoth: boolean;
}
rankedGame: boolean;
}
}
export var GlobalStateContext = React.createContext();
|