common.ts 142 B

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