isRenderFunc.tsx 185 B

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