Replies: 1 comment 6 replies
|
Use Solid's The problem is every time you access |
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I have a component that expects to receive a
[children]array and interleaves them with other elements. In the parent, it sometimes makes sense to create the children with a<For each={children} />. The problem is that I'm getting a signal passed into the component now instead of an array of children. How do I handle that?I tried
But this doesn't seem to be working.
All reactions