Skip to main content

Type Alias: RegisteredComponents

RegisteredComponents = Record<string, RegisteredComponent>

Defined in: components.ts:43

A record type that maps component type strings to their registered component definitions. This is the main registry structure for all available components in the system.

Example

const components: RegisteredComponents = {
'Button': buttonComponent,
'TextInput': textInputComponent,
'View': viewComponent
};