Skip to content

Commit

Permalink
memo
Browse files Browse the repository at this point in the history
  • Loading branch information
romgrk committed Feb 4, 2024
1 parent 1052ef4 commit fc3b776
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import * as React from 'react';
import clsx from 'clsx';
import { styled } from '@mui/material/styles';
import { fastMemo } from '../utils/fastMemo';
import { getDataGridUtilityClass as getClassName } from '../constants';

const classes = {
Expand Down Expand Up @@ -47,4 +48,6 @@ function GridScrollbarFillerCell({
);
}

export { GridScrollbarFillerCell };
const Memoized = fastMemo(GridScrollbarFillerCell);

export { Memoized as GridScrollbarFillerCell };

0 comments on commit fc3b776

Please sign in to comment.