Files
ETB/ETB-FrontEnd/node_modules/@mui/x-data-grid/hooks/utils/useFirstRender.js
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

9 lines
209 B
JavaScript

import * as React from 'react';
export const useFirstRender = callback => {
const isFirstRender = React.useRef(true);
if (isFirstRender.current) {
isFirstRender.current = false;
callback();
}
};