interface DynamicComponentProps<T extends object = object> {
    getRegistryId?: (viewModel: T) => ComponentsRegistryIdentifier;
    unknownComponent?: () => | null
    | ReactElement<any, string | JSXElementConstructor<any>>;
    viewModel: T;
}

Type Parameters

  • T extends object = object

Hierarchy (View Summary)

Properties

getRegistryId?: (viewModel: T) => ComponentsRegistryIdentifier
unknownComponent?: () => | null
| ReactElement<any, string | JSXElementConstructor<any>>
viewModel: T
MMNEPVFCICPMFPCPTTAAATR