stupa-pdf-api/frontend/node_modules/@mui/x-data-grid/utils/fastMemo.js

5 lines
213 B
JavaScript

import * as React from 'react';
import { fastObjectShallowCompare } from './fastObjectShallowCompare';
export function fastMemo(component) {
return /*#__PURE__*/React.memo(component, fastObjectShallowCompare);
}