refactored PlayerModel to Player

This commit is contained in:
2025-12-04 18:58:37 +05:30
parent ab9dd42689
commit 68c2e3a8d9
6 changed files with 12 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
import {
Board,
PlayerModel,
Player,
} from '../../interfaces/models'
@@ -9,7 +9,7 @@ export interface TicTacToeBoardProps {
turn: number;
winner: string | null;
gameOver: boolean | null;
players: PlayerModel[];
players: Player[];
myUserId: string | null;
onCellClick: (row: number, col: number) => void;
}