stupa-pdf-api/frontend/node_modules/@mui/x-data-grid/modern/hooks/utils/useFirstRender.js

8 lines
208 B
JavaScript

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