[Canvas] ItemGrid refactor. (#110044)

This commit is contained in:
Yaroslav Kuznietsov 2021-08-27 09:26:55 +03:00 committed by GitHub
parent dfa6aa8bdf
commit dde701faaa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,8 +4,7 @@
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { pure } from 'recompose';
import { memo } from 'react';
import { ItemGrid as Component, Props as ComponentProps } from './item_grid';
export const ItemGrid = pure<ComponentProps<any>>(Component);
export const ItemGrid = memo<ComponentProps<any>>(Component);