Hooks and components for consuming remirror with your fave framework React.
Overall
score
36%
Evaluation — 36%
↑ 1.09xAgent success when using this tile
Build a React rich-text editor component that exposes prebuilt formatting, list, and alignment controls from the dependency. The component should initialize with optional HTML content, render an always-visible toolbar, and emit updated HTML whenever edits are made.
@generates
export interface ToolbarEditorProps {
/**
* Optional HTML string used to seed the editor content.
*/
initialContent?: string;
/**
* Called with the latest HTML whenever the document changes.
*/
onChange?: (html: string) => void;
/**
* When false, the editor renders in read-only mode while still showing toolbar state.
*/
editable?: boolean;
}
/**
* Rich-text editor with prebuilt toolbar controls for formatting, lists, and alignment.
*/
export function ToolbarEditor(props: ToolbarEditorProps): JSX.Element;Provides the editor container, prebuilt toolbar components, and ready-made formatting/list/alignment controls.
docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10