diff options
author | 2022-05-11 12:23:34 -0400 | |
---|---|---|
committer | 2022-05-11 10:23:34 -0600 | |
commit | abc5b219bb58c22b680da0486bc2b779e6661dd8 (patch) | |
tree | 8a6415ce274b919de53a85501e138ae125a55b3a /examples/integrations-playground/src/pages/index.astro | |
parent | 380acd23de6c0ccd1237d5a99a0af8641d17f4fa (diff) | |
download | astro-abc5b219bb58c22b680da0486bc2b779e6661dd8.tar.gz astro-abc5b219bb58c22b680da0486bc2b779e6661dd8.tar.zst astro-abc5b219bb58c22b680da0486bc2b779e6661dd8.zip |
Remove try/catch from solid component check (#3282)
* Remove try/catch from solid component check
* Move try/catch to renderComponent
* Add solid to integrations-playground example
Diffstat (limited to 'examples/integrations-playground/src/pages/index.astro')
-rw-r--r-- | examples/integrations-playground/src/pages/index.astro | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/integrations-playground/src/pages/index.astro b/examples/integrations-playground/src/pages/index.astro index 2ee717d6a..06c9aa3d8 100644 --- a/examples/integrations-playground/src/pages/index.astro +++ b/examples/integrations-playground/src/pages/index.astro @@ -1,8 +1,9 @@ --- import Lorem from '../components/Lorem.astro'; import Link from '../components/Link.jsx'; +import SolidCounter from '../components/SolidCounter.jsx'; import '../components/Test.js'; -import '../components/Counter.js'; +import '../components/Counter.js'; --- <!DOCTYPE html> @@ -14,20 +15,19 @@ import '../components/Counter.js'; <body> <h1 class="px-4 py-4">Test app</h1> <h2 class="partytown-status"> - <strong>Party Mode!</strong> + <strong>Party Mode!</strong> Colors changing = partytown is enabled </h2> <my-counter client:load></my-counter> + <SolidCounter client:load></SolidCounter> <Link to="/foo" text="Go to Page 2" /> <Lorem /> <calc-add num={33}></calc-add> - - <script type="text/partytown"> // Remove `type="text/partytown"` to see this block the page // and cause the page to become unresponsive console.log('start partytown blocking script') - const now = Date.now() + const now = Date.now() let count = 1; while (Date.now() - now < 10000) { if (Date.now() - now > count * 1000) { @@ -46,7 +46,7 @@ import '../components/Counter.js'; </script> <style> h1, h2 { - color: blue; + color: blue; } </style> </body> |