hashbrown

Component

API

export type Component<T = any> =
  | {
      new (...args: any[]): T;
    }
  | ((props: T) => any);
Component
@typeT