aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/solid-dom-fixtures/insertChildren/code.js
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-06-22 23:21:48 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-06-22 23:21:48 -0700
commit729d445b6885f69dd2c6355f38707bd42851c791 (patch)
treef87a7c408929ea3f57bbb7ace380cf869da83c0e /integration/bunjs-only-snippets/solid-dom-fixtures/insertChildren/code.js
parent25f820c6bf1d8ec6d444ef579cc036b8c0607b75 (diff)
downloadbun-jarred/rename.tar.gz
bun-jarred/rename.tar.zst
bun-jarred/rename.zip
change the directory structurejarred/rename
Diffstat (limited to 'integration/bunjs-only-snippets/solid-dom-fixtures/insertChildren/code.js')
-rw-r--r--integration/bunjs-only-snippets/solid-dom-fixtures/insertChildren/code.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/integration/bunjs-only-snippets/solid-dom-fixtures/insertChildren/code.js b/integration/bunjs-only-snippets/solid-dom-fixtures/insertChildren/code.js
deleted file mode 100644
index 41d3d017e..000000000
--- a/integration/bunjs-only-snippets/solid-dom-fixtures/insertChildren/code.js
+++ /dev/null
@@ -1,36 +0,0 @@
-const children = <div />;
-const dynamic = {
- children,
-};
-const template = <Module children={children} />;
-const template2 = <module children={children} />;
-const template3 = <module children={children}>Hello</module>;
-const template4 = (
- <module children={children}>
- <Hello />
- </module>
-);
-const template5 = <module children={dynamic.children} />;
-const template6 = <Module children={dynamic.children} />;
-const template7 = <module {...dynamic} />;
-const template8 = <module {...dynamic}>Hello</module>;
-const template9 = <module {...dynamic}>{dynamic.children}</module>;
-const template10 = <Module {...dynamic}>Hello</Module>;
-const template11 = <module children={/*@once*/ state.children} />;
-const template12 = <Module children={/*@once*/ state.children} />;
-const template13 = <module>{...children}</module>;
-const template14 = <Module>{...children}</Module>;
-const template15 = <module>{...dynamic.children}</module>;
-const template16 = <Module>{...dynamic.children}</Module>;
-const template18 = <module>Hi {...children}</module>;
-const template19 = <Module>Hi {...children}</Module>;
-const template20 = <module>{children()}</module>;
-const template21 = <Module>{children()}</Module>;
-const template22 = <module>{state.children()}</module>;
-const template23 = <Module>{state.children()}</Module>;
-
-const tiles = [];
-tiles.push(<div>Test 1</div>);
-const template24 = <div>{tiles}</div>;
-
-const comma = <div>{(expression(), "static")}</div>;