Zum Hauptinhalt springen
Version: Material

Hangman

Simples (mehrheitlich) AI-Generiertes Hangman-Spiel, das ein Wort erraten lässt.

import Hangman from '@hfr/hangman';


<Hangman words={['INFORMATIK']} showSolution label="Finden Sie das gesuchte Wort?"/>
http://localhost:3000

Finden Sie das gesuchte Wort?

Props

interface Props {
words: string[];
showSolution: boolean;
label?: string;
}