MemoChildren.d.ts 308 B

1234567
  1. import * as React from 'react';
  2. export type MemoChildrenProps = {
  3. shouldUpdate: boolean;
  4. children: React.ReactNode;
  5. };
  6. declare const _default: React.MemoExoticComponent<({ children }: MemoChildrenProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>>>;
  7. export default _default;