common.ts 135 B

123456789
  1. /*
  2. * Common types and interfaces
  3. */
  4. import { ReactNode } from 'react';
  5. export type HasChildren<T = ReactNode> = {
  6. children?: T
  7. }