Hooks and components for consuming remirror with your fave framework React.
Overall
score
36%
Evaluation — 36%
↑ 1.09xAgent success when using this tile
Create a React component that renders Remirror-style JSON documents with custom node and mark mappings, optimized configuration reuse, and graceful error handling.
@generates
import type { ComponentType, ReactElement } from 'react';
export interface ArticleRendererProps {
json: unknown;
typeMap?: Record<string, ComponentType<any>>;
markMap?: Record<string, ComponentType<any>>;
componentProps?: Record<string, any>;
errorBoundary?: ComponentType<{ error: Error; children: React.ReactNode }>;
fallback?: ReactElement | null;
}
/**
* Render rich text content described as Remirror-compatible JSON using package-provided renderer utilities.
*/
export function ArticleRenderer(props: ArticleRendererProps): ReactElement;Provides JSON-to-React rendering utilities, configurable type/mark mapping, and performance helpers.
docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10