UNPKG

@native-html/heuristic-table-plugin

Version:

🔠 A 100% native component using heuristics to render tables in react-native-render-html

16 lines (14 loc) • 424 B
import React from 'react'; import HTMLTable from './HTMLTable'; import useHtmlTableProps from './useHtmlTableProps'; /** * A 100% native renderer component for `table` tag. * * @param props - Component props. * @public */ const TableRenderer = function (props) { return /*#__PURE__*/React.createElement(HTMLTable, useHtmlTableProps(props)); }; export default TableRenderer; //# sourceMappingURL=TableRenderer.js.map