| 4 | import { GameResult, Result } from '@/screens/Game'; |
| 5 | |
| 6 | interface ModalProps { |
| 7 | blackPlayer?: { id: string; name: string }; |
| 8 | whitePlayer?: { id: string; name: string }; |
| 9 | gameResult: GameResult; |
| 10 | } |
| 11 | |
| 12 | const GameEndModal: React.FC<ModalProps> = ({ |
| 13 | blackPlayer, |
nothing calls this directly
no outgoing calls
no test coverage detected