UNPKG

@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) 340 B
import * as React from 'react'; import join from '../../utils/join'; import { Box } from 'rebass'; const baseClassName = 'ab-ListGroup'; const ListGroup = (props) => { const { className, ...domProps } = props; return React.createElement(Box, { ...domProps, className: join(className, baseClassName) }); }; export default ListGroup;