TESSA Web API
    Preparing search index...

    Interface DynamicComponentProps<T>

    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)

    Index

    Properties

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