@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
10 lines (9 loc) • 571 B
JavaScript
import { InfiniteTable as InfiniteTableComponent, } from '@infinite-table/infinite-react';
export * from '@infinite-table/infinite-react';
import { INFINITE_TABLE_LICENSE_KEY } from '../../EnvVars';
import * as React from 'react';
function InfiniteTable(props) {
return (React.createElement(InfiniteTableComponent, { sortable: false, rowHeight: '--ab-grid-row-height', draggableColumns: false, keyboardNavigation: false, ...props, licenseKey: INFINITE_TABLE_LICENSE_KEY }));
}
InfiniteTableComponent.licenseKey = INFINITE_TABLE_LICENSE_KEY;
export { InfiniteTable };