Documentation
    Preparing search index...

    Type Alias PlayerContext

    The Player context.

    type PlayerContext = {
        currentScore: Score | null;
        player: Player | null;
        setCurrentScore: Dispatch<SetStateAction<Score | null>>;
    }
    Index
    currentScore: Score | null

    The current Score.

    player: Player | null

    The Player instance.

    setCurrentScore: Dispatch<SetStateAction<Score | null>>

    The current Score setter.