Files
ETB/ETB-FrontEnd/node_modules/@mui/x-internals/esm/fastMemo/fastMemo.js
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

5 lines
223 B
JavaScript

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