UNPKG

@native-html/table-plugin

Version:

🔠 A WebView-based plugin to render tables in react-native-render-html

18 lines (17 loc) • 598 B
import { CustomBlockRenderer, HTMLContentModel } from 'react-native-render-html'; import { HTMLElementModel } from '@native-html/transient-render-engine'; /** * The renderer component for the table element. This renderer is fully * scalable, and will adjust to `contentWidth` and `computeEmbeddedMaxWidth`. * It also features `onLinkPress`. * * @public */ declare const TableRenderer: CustomBlockRenderer; /** * The model to attach to custom table renderers. * * @public */ export declare const tableModel: HTMLElementModel<'table', HTMLContentModel.block>; export default TableRenderer;