@native-html/heuristic-table-plugin
Version:
🔠A 100% native component using heuristics to render tables in react-native-render-html
10 lines (9 loc) • 359 B
TypeScript
import { TBlock, CustomRendererProps } from 'react-native-render-html';
/**
* Customize `td` and `th` renderers while reusing default cell renderer logic.
*
* @param props - Props from custom renderer.
*
* @public
*/
export default function useHtmlTableCellProps({ propsFromParent, ...props }: CustomRendererProps<TBlock>): CustomRendererProps<TBlock>;