()
| 96 | export default ChessBoard; |
| 97 | |
| 98 | const PlayerStrip = () => { |
| 99 | return ( |
| 100 | <View style={styles.playerStrip}> |
| 101 | <View style={styles.playerAvatar}></View> |
| 102 | <View> |
| 103 | <Text style={styles.name}>Player 1</Text> |
| 104 | </View> |
| 105 | </View> |
| 106 | ); |
| 107 | }; |
| 108 | |
| 109 | function get_captured_pieces(moves: Move[], color: string) { |
| 110 | const captured = { p: 0, n: 0, b: 0, r: 0, q: 0 }; |
nothing calls this directly
no outgoing calls
no test coverage detected