Integrated Home comp with the game comp

This commit is contained in:
2024-02-13 09:41:01 +01:00
parent 232aae14a8
commit 79962f45dc
7 changed files with 170 additions and 86 deletions
+3 -1
View File
@@ -3,8 +3,10 @@ import { atom } from 'recoil';
export const gameStateAtom = atom({
key: 'gameState',
default: {
status: 'settings',
difficulty: 'begginer',
gridSize: 20,
bombs: 0,
placedFlags: 0,
status: 'idle',
},
});