@dotcms/react
Version:
Official React Components library to render a dotCMS page.
17 lines (16 loc) • 476 B
TypeScript
import React from 'react';
import { ContentNode } from '../../../models/content-node.interface';
interface TableRendererProps {
content: ContentNode[];
blockEditorItem: React.FC<{
content: ContentNode[];
}>;
}
/**
* Renders a table component for the Block Editor.
*
* @param content - The content of the table.
* @param blockEditorItem - The Block Editor item component.
*/
export declare const TableRenderer: React.FC<TableRendererProps>;
export {};