feat(docs): indicate tip for using lit-html

This commit is contained in:
Ayo Ayco 2025-03-27 16:28:00 +01:00
parent e80b157d9d
commit 4c8be71875

View file

@ -20,7 +20,9 @@ Treat it as a **stable alpha** product. Though the public APIs are stable, most
For building advanced interactions, there is an in-progress work on smart diffing to prevent component children being wiped on interaction.
</Aside>
In the mean time, if you have some complex needs, we recommend using the `WebComponent` base class with a more mature rendering approach like `lit-html`... and here's a demo for that: [View on CodePen ↗](https://codepen.io/ayoayco-the-styleful/pen/ZEwNJBR?editors=1010).
<Aside type="tip">
If you have some complex needs, we recommend using the `WebComponent` base class with a more mature rendering approach like `lit-html`, and here's a demo for that: [View on CodePen](https://codepen.io/ayoayco-the-styleful/pen/ZEwNJBR?editors=1010).
</Aside>
...or you can even [use just parts](/just-parts) of it for your own base class.