| 37 | const GAME_TIME_MS = 10 * 60 * 1000; |
| 38 | |
| 39 | export interface Player { |
| 40 | id: string; |
| 41 | name: string; |
| 42 | isGuest: boolean; |
| 43 | } |
| 44 | import { useRecoilValue, useSetRecoilState } from 'recoil'; |
| 45 | |
| 46 | import { movesAtom, userSelectedMoveIndexAtom } from '@repo/store/chessBoard'; |
nothing calls this directly
no outgoing calls
no test coverage detected