aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/solid-dom-fixtures/customElements/output.bun.js
diff options
context:
space:
mode:
Diffstat (limited to 'integration/bunjs-only-snippets/solid-dom-fixtures/customElements/output.bun.js')
-rw-r--r--integration/bunjs-only-snippets/solid-dom-fixtures/customElements/output.bun.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/integration/bunjs-only-snippets/solid-dom-fixtures/customElements/output.bun.js b/integration/bunjs-only-snippets/solid-dom-fixtures/customElements/output.bun.js
deleted file mode 100644
index 79c46280c..000000000
--- a/integration/bunjs-only-snippets/solid-dom-fixtures/customElements/output.bun.js
+++ /dev/null
@@ -1,27 +0,0 @@
-var _tmpl = _template$("<my-element/>", 0), _tmpl$2 = _template$('<my-element><header slot="head">Title</header></my-element>', 4);
-const template = () => {
- var _el = _tmpl.cloneNode(true);
- setAttribute(_el, "some-attr", name);
- setAttribute(_el, "notProp", data);
- setAttribute(_el, "attr:my-attr", data);
- setAttribute(_el, "prop:someProp", data);
- return _el;
-};
-const template2 = () => {
- var _el = _tmpl.cloneNode(true);
- effect(() => {
- return setAttribute(_el, "some-attr", state.name);
- });
- effect(() => {
- return setAttribute(_el, "notProp", state.data);
- });
- effect(() => {
- return setAttribute(_el, "attr:my-attr", state.data);
- });
- effect(() => {
- return setAttribute(_el, "prop:someProp", state.data);
- });
- return _el;
-};
-const template3 = _tmpl$2.cloneNode(true);
-const template4 = ;