Skip to content

Commit

Permalink
Сврерстал страницу игры и окно начала игры
Browse files Browse the repository at this point in the history
  • Loading branch information
Timur233 committed Sep 29, 2024
1 parent 95411b0 commit 0768737
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/client/src/pages/Game/Game.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const Game = () => {
}

const arrowClickHandler = () => {
return;
return
}

const toggleButton = (event: Event, buttonName: string, state: boolean) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
bottom: 0;
transform: translateX(-50%);
padding: 20px 0;
}
}
4 changes: 2 additions & 2 deletions packages/client/src/pages/Game/components/Arrows/Arrows.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ type ArrowsPropsType = {
leftButton: boolean
rightButton: boolean
fireButton: boolean
},
clickHandler: () => void,
}
clickHandler: () => void
}

export const Arrows = (props: ArrowsPropsType) => {
Expand Down

0 comments on commit 0768737

Please sign in to comment.