aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/solid-dom-fixtures/customElements/code.js
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-12-09 16:41:38 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-12-09 16:41:38 -0800
commit88538b7c2c68fe506d0a20a8f5b78e47c6c60299 (patch)
treee27cae0caf7a42ff82177d38911693fcd3720ce8 /test/bun.js/solid-dom-fixtures/customElements/code.js
parent79138c4c7cb72a5f84c9a81720a73d283d78b1be (diff)
downloadbun-88538b7c2c68fe506d0a20a8f5b78e47c6c60299.tar.gz
bun-88538b7c2c68fe506d0a20a8f5b78e47c6c60299.tar.zst
bun-88538b7c2c68fe506d0a20a8f5b78e47c6c60299.zip
Deprecate very incomplete Solid.js JSX transform
We don't have time to do a good job of this and Bun.plugin makes it possible to use Solid with Bun
Diffstat (limited to '')
-rw-r--r--test/bun.js/solid-dom-fixtures/customElements/code.js29
1 files changed, 0 insertions, 29 deletions
diff --git a/test/bun.js/solid-dom-fixtures/customElements/code.js b/test/bun.js/solid-dom-fixtures/customElements/code.js
deleted file mode 100644
index bc844b7d8..000000000
--- a/test/bun.js/solid-dom-fixtures/customElements/code.js
+++ /dev/null
@@ -1,29 +0,0 @@
-const template = (
- <my-element
- some-attr={name}
- notProp={data}
- attr:my-attr={data}
- prop:someProp={data}
- />
-);
-
-const template2 = (
- <my-element
- some-attr={state.name}
- notProp={state.data}
- attr:my-attr={state.data}
- prop:someProp={state.data}
- />
-);
-
-const template3 = (
- <my-element>
- <header slot="head">Title</header>
- </my-element>
-);
-
-const template4 = (
- <>
- <slot name="head" />
- </>
-);