diff --git a/src/api/BoardScorePage/BoardScorePage.tsx b/src/api/BoardScorePage/BoardScorePage.tsx
index d7542e3..1d0e1c2 100644
--- a/src/api/BoardScorePage/BoardScorePage.tsx
+++ b/src/api/BoardScorePage/BoardScorePage.tsx
@@ -13,6 +13,7 @@ interface BoardScoreTableProps {
children?: any;
onCellChange?: (rowIndex: number, playerIndex: number, value: any) => void;
logo?: JSX.Element;
+ afterTableElement?: JSX.Element;
isDarkModeEnabled?: boolean;
}
@@ -27,6 +28,7 @@ export default function BoardScorePage({
children,
onCellChange,
logo,
+ afterTableElement,
isDarkModeEnabled = false,
}: BoardScoreTableProps): JSX.Element {
const navigate = useNavigate();
@@ -75,6 +77,7 @@ export default function BoardScorePage({
definition={definition}
gameSettings={settings}
playerSize={playerSize}>
+ {afterTableElement}
{showHelpButton && (
;
return (
-
+
);
diff --git a/src/games/sea-salt-paper/View.tsx b/src/games/sea-salt-paper/View.tsx
index 9c08787..85e0523 100644
--- a/src/games/sea-salt-paper/View.tsx
+++ b/src/games/sea-salt-paper/View.tsx
@@ -2,5 +2,10 @@ import GameView from '../../components/GameView';
import getDefinition from './definition';
export default function SeaSaltPaperView() {
- return ;
+ const roundBtn = (
+
+ );
+ return (
+
+ );
}