Home > @uniformdev/canvas-react > RenderComponentResolver

RenderComponentResolver type

Function that maps a Canvas component instance to its React component to render it. The resolver would commonly inspect the type and possibly variant of the component to decide.

Signature:

type RenderComponentResolver = (component: ComponentInstance) => React.ComponentType<ComponentProps<any>> | null;

References: ComponentInstance, ComponentProps