AppendRegion
Overload 1
Section titled “Overload 1”import { AppendRegion } from "@alloy-js/core";
<AppendRegion id="string"> {children}</AppendRegion>
import { AppendRegion } from "@alloy-js/core/stc";
AppendRegion({ id: string }).children(children)
children | Children The content to append to the region. |
id | string The ID of the region. |
Overload 2
Section titled “Overload 2”import { AppendRegion } from "@alloy-js/core";
<AppendRegion content={Children} id="string" />
import { AppendRegion } from "@alloy-js/core/stc";
AppendRegion({ content: Children, id: string }).children(children)
content | Children The content to append to the region. |
id | string The ID of the region. |
Overload 3
Section titled “Overload 3”import { AppendRegion } from "@alloy-js/core";
<AppendRegion id="string" />
import { AppendRegion } from "@alloy-js/core/stc";
AppendRegion({ id: string }).children(children)
id | string The ID of the region. |