large performance refactor

This commit is contained in:
jeffvli
2025-11-26 13:54:45 -08:00
parent 948f428546
commit 60cdea6787
32 changed files with 1030 additions and 502 deletions
@@ -266,7 +266,7 @@ export interface ItemGridListProps {
rows?: ItemCardProps['rows'];
}
export const ItemGridList = ({
const BaseItemGridList = ({
data,
enableDrag = true,
enableExpansion = false,
@@ -750,3 +750,7 @@ const ListComponent = memo((props: ListChildComponentProps<GridItemProps>) => {
</div>
);
});
export const ItemGridList = memo(BaseItemGridList);
ItemGridList.displayName = 'ItemGridList';