menu
hide

FEN

Typing

type FEN = string;

What is it FEN?

FEN notation is a compact way to represent the state of a chessboard.
You can read about FEN notation on this page 👈

Code

<ChessBoard 
    FEN="3k4/qqqqqqqq/8/8/8/8/QQQQQQQQ/3K4 b - - 0 1" // <~~~ King and Pawn FEN
    onChange={handleChange}
    onEndGame={handleEndGame}
/>

Example