mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-24 07:16:52 -06:00
042888f5d7
- Always generate right-angled links - Switch port to Left/Right for the best link route.
17 lines
392 B
JavaScript
17 lines
392 B
JavaScript
import React, { useRef } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
export * from 'react-data-grid';
|
|
|
|
|
|
const ReactDataGrid = React.forwardRef((props, _ref)=>{
|
|
const ele = useRef();
|
|
return <div id={props.id} ref={ele} data-test="react-data-grid"/>;
|
|
});
|
|
|
|
ReactDataGrid.displayName = 'ReactDataGrid';
|
|
ReactDataGrid.propTypes = {
|
|
id: PropTypes.any
|
|
};
|
|
|
|
export default ReactDataGrid;
|