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 | ChildrenThe content to append to the region. |
| id | stringThe 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 | ChildrenThe content to append to the region. |
| id | stringThe 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 | stringThe ID of the region. |