Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ComponentChild

import type { ComponentChild } from "https://aws-api.deno.dev/v0.3/services/amplifyuibuilder.ts?docs=full";

A nested UI configuration within a parent Component.

interface ComponentChild {
children?: ComponentChild[] | null;
componentType: string;
name: string;
properties: {
[key: string]: ComponentProperty | null | undefined;
}
;
}

§Properties

§
children?: ComponentChild[] | null
[src]

The list of ComponentChild instances for this component.

§
componentType: string
[src]

The type of the child component.

§
name: string
[src]

The name of the child component.

§
properties: {
[key: string]: ComponentProperty | null | undefined;
}
[src]

Describes the properties of the child component.