feat : arrow up/down to go to end/start position

This commit is contained in:
GuillaumeSD
2024-03-27 00:27:01 +01:00
parent 6177824d28
commit afbb89c9c5
3 changed files with 19 additions and 3 deletions

View File

@@ -10,8 +10,6 @@ export const currentPositionAtom = atom<CurrentPosition>({});
export const boardOrientationAtom = atom(true);
export const showBestMoveArrowAtom = atom(true);
export const showPlayerMoveIconAtom = atom(true);
export const clickedSquaresAtom = atom<string[]>([]);
export const playableSquaresAtom = atom<string[]>([]);
export const engineDepthAtom = atom(16);
export const engineMultiPvAtom = atom(3);