mcfly/public/output/registry.js
2023-10-08 09:21:45 +02:00

2 lines
No EOL
262 B
JavaScript

import C0 from "./clickable-text.js";import C1 from "./hello-world.js";const registry = {
"clickable-text": C0,"hello-world": C1};Object.keys(registry).forEach((key) => {if(window?.hasOwnProperty("customElements"))customElements.define(key, registry[key]);})