UNPKG

react-new-hoc

Version:

Work with React and HOCs (Higher-Order Components)

7 lines (5 loc) 212 B
import { ComponentProps, ComponentType } from "react"; import { Simplify } from "type-fest"; export type PartialComponent<T extends ComponentType<any>> = ComponentType< Simplify<Partial<ComponentProps<T>>> >;