diff options
| author | 2022-12-09 16:41:38 -0800 | |
|---|---|---|
| committer | 2022-12-09 16:41:38 -0800 | |
| commit | 88538b7c2c68fe506d0a20a8f5b78e47c6c60299 (patch) | |
| tree | e27cae0caf7a42ff82177d38911693fcd3720ce8 /test/bun.js/solid-dom-fixtures/customElements/code.js | |
| parent | 79138c4c7cb72a5f84c9a81720a73d283d78b1be (diff) | |
| download | bun-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.js | 29 |
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" /> - </> -); |
