MCPcopy Create free account
hub / github.com/code100x/chess / GameModeComponent

Interface GameModeComponent

apps/frontend/src/components/GameModeComponent.tsx:3–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { ReactNode, MouseEventHandler } from 'react';
2
3interface GameModeComponent {
4 icon: ReactNode;
5 title: string;
6 description: string;
7 onClick?: MouseEventHandler<HTMLDivElement>;
8 disabled: boolean;
9}
10
11const GameModeComponent = ({
12 icon,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected