UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

7 lines (6 loc) 219 B
import * as React from 'react'; import join from '../utils/join'; const Table = (props) => { return React.createElement("table", { ...props, className: join(props.className, 'ab-Table') }); }; export default Table;