| 1 | import { Player } from "../screens/Game" |
| 2 | |
| 3 | interface PlayerTitleProps { |
| 4 | player: Player | undefined |
| 5 | isSelf?: boolean |
| 6 | } |
| 7 | |
| 8 | export const PlayerTitle = ({player, isSelf}: PlayerTitleProps) => { |
| 9 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected