@virtualstate/examples
Version:
19 lines • 604 B
JavaScript
import { h } from "@virtualstate/fringe";
const soccerOptions = {
pressure: "pumped"
};
const soccer = h("⚽", soccerOptions);
const node = h("🐸", {}, soccer);
const source = node.source;
const children = node.children;
const childrenOther = node.children;
for await (const children of node.children) {
for (const child of children) {
const childSource = child.source;
const childOptions = child.options;
const childChildren = child.children;
}
}
export const _602_TypeStructure = node;
export const _602_URL = import.meta.url;
//# sourceMappingURL=children.js.map