import { useRef } from 'react'; import PropTypes from 'prop-types'; export * from 'react-data-grid'; export const DataGrid = ( { ref: _ref, ...props } ) => { const ele = useRef(); return
; }; DataGrid.displayName = 'DataGrid'; DataGrid.propTypes = { id: PropTypes.any };