Hooks and components for consuming remirror with your fave framework React.
Overall
score
36%
Evaluation — 36%
↑ 1.09xAgent success when using this tile
A React toolbar and status panel that wires into an existing editor context to trigger formatting commands and expose live selection details.
@generates
export interface CommandPanelProps {
/** Text to insert when the snippet control is triggered. Defaults to "—". */
snippetText?: string;
/** Message to display when no selection is present. Defaults to "No selection". */
emptySelectionLabel?: string;
}
/**
* Toolbar and status panel bound to a Remirror editor context, exposing
* formatting controls, snippet insertion, and selection diagnostics.
*/
export function CommandPanel(props: CommandPanelProps): JSX.Element;React bindings for the editor, providing command chaining, helper, and state access hooks.
docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10