isRenderFunc.tsx 224 B

12345678
  1. /**
  2. * Generic type guard for children as a function patterns.
  3. */
  4. export function isRenderFunc<T extends React.ReactNode | Function>(
  5. func: React.ReactNode | Function
  6. ): func is T {
  7. return typeof func === 'function';
  8. }