| 1 | import { ReactNode, MouseEventHandler } from 'react'; |
| 2 | |
| 3 | interface GameModeComponent { |
| 4 | icon: ReactNode; |
| 5 | title: string; |
| 6 | description: string; |
| 7 | onClick?: MouseEventHandler<HTMLDivElement>; |
| 8 | disabled: boolean; |
| 9 | } |
| 10 | |
| 11 | const GameModeComponent = ({ |
| 12 | icon, |
nothing calls this directly
no outgoing calls
no test coverage detected