Type Alias CustomComponentOverride<Props>

CustomComponentOverride<Props>: {
    component?: ComponentType<Props>;
    render?: ((props: Props) => ReactNode);
}

Type Parameters

  • Props