React Chessboard UI

v
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 👈

Example


<ChessBoard 
    FEN="3k4/qqqqqqqq/8/8/8/8/QQQQQQQQ/3K4 w - - 0 1" // <~~~ Custom FEN
    onChange={handleChange}
    onEndGame={handleEndGame}
/>