Carlo Taleon
Carlo Taleon
SolidJS
Hi! Awesome stuff. I've been pulling my hairs solving local-first. How are you guys seamlessly making this look easy. Any limitations encountered so far? What conflicts can Triplit not handle?...
I know it draws on world space at the moment. Any way it can work in the GUI space? Would be useful to debug GUI-space coordinates. Thanks in advance! Awesome...
### Describe the bug 2 SolidJS concepts colliding with eachother: 1. [Dynamic](https://docs.solidjs.com/concepts/control-flow/dynamic) 2. [Attr](docs.solidjs.com/reference/jsx-attributes/attr) For instance when using this code: ```tsx 1. I'm a dynamic component without `attr:*`. Inspect element...
Not sure if it's a bug, but this could be a feature request as well. My experience with [Record Types](https://tour.gleam.run/data-types/records/) and [Generic Custom Types](https://tour.gleam.run/data-types/generic-custom-types/) have been pretty clunky. Here's a...
### What version of Hono are you using? 4.6.3 ### What runtime/platform is your app running on? Node ### What steps can reproduce the bug? Just this piece of code...
```tsx //Parent { const current = ref(); const content = props.children; if (current && content) { const result = await codeToHtml(content, { lang: 'typescript', theme: 'vitesse-dark', }); current.innerHTML = result;...