This commit is contained in:
Maciej Caderek
2022-04-01 20:52:15 +02:00
parent a003ab6089
commit 2a252b6c69
8 changed files with 136 additions and 44 deletions

View File

@@ -21,6 +21,7 @@ const initialBoardConfig: BoardConfig = {
showCoords: true,
showShadows: false,
sounds: true,
speech: false,
flipped: false,
};
@@ -73,8 +74,6 @@ const initialState: State = {
refreshHash: true,
};
console.log(initialState);
const [state, setState] = createStore(initialState);
export { state, setState };