import React from "react"; import type { ConfigPropertyRepresentation } from "@keycloak/keycloak-admin-client/lib/defs/authenticatorConfigInfoRepresentation"; import { COMPONENTS, isValidComponentType } from "./components"; type DynamicComponentProps = { properties: ConfigPropertyRepresentation[]; }; export const DynamicComponents = ({ properties }: DynamicComponentProps) => ( <> {properties.map((property) => { const componentType = property.type!; if (isValidComponentType(componentType)) { const Component = COMPONENTS[componentType]; return ; } else { console.warn(`There is no editor registered for ${componentType}`); } })} );