@virtualstate/examples
Version:
10 lines • 503 B
JavaScript
import { h } from "@virtualstate/fringe";
const Token = (h("test", { class: "default-class" },
h("inner", null, "Hello!")));
const output = (h("hello", { class: "main" },
h(Token, { first: true }),
h(Token, { class: "content" }, "This is the content for this middle one"),
h(Token, { last: true, class: "footer" }, "This is the content for the last one")));
export const _710_Token = output;
export const _710_URL = import.meta.url;
//# sourceMappingURL=token-extendable-top-level.js.map