@virtualstate/examples
Version:
18 lines • 680 B
JavaScript
import { Sync } from "./static.js";
import { Cactus, Scroll, TestTube, Thread } from "./domain.js";
import { h, createFragment } from "@virtualstate/fringe";
export * from "./static.js";
const node = (h(TestTube, null,
h(Thread, { size: 2 }),
h(Cactus, { spikes: "spikey" }),
h(Cactus, { spikes: "not very spikey" }),
h(Scroll, null)));
export const _E4001_StaticSync = (h(Sync, null, node));
export const _E4001_URL = import.meta.url;
export const _E4002_StaticSync = (h(createFragment, null,
_E4001_StaticSync,
_E4001_StaticSync,
_E4001_StaticSync,
_E4001_StaticSync));
export const _E4002_URL = import.meta.url;
//# sourceMappingURL=index.js.map