File size: 300 Bytes
baa4c21
 
 
 
 
 
1
2
3
4
5
6
7
import { memo } from 'react';

export const genericMemo: <T extends keyof JSX.IntrinsicElements | React.JSXElementConstructor<any>>(

  component: T,

  propsAreEqual?: (prevProps: React.ComponentProps<T>, nextProps: React.ComponentProps<T>) => boolean,

) => T & { displayName?: string } = memo;