@virtualstate/examples
Version:
13 lines • 364 B
JavaScript
import { h } from "../../jsx.js";
class Component {
child;
constructor(o, child) {
this.child = child;
}
async *[Symbol.asyncIterator]() {
yield h("container", null, this.child);
}
}
export const _403_ClassWithChildren = (h(Component, null, "🐸"));
export const _403_URL = import.meta.url;
//# sourceMappingURL=children.js.map