Hey there,
I'm having troubles wrapping my head around why my components are mounted multiple times. I'm not sure if it's an Astro-issue or a Solidjs-one (or more likely, a programmer issue :P) .
I have a structure that looks similar to this:
<Layout> // Astro comp
<Pagination client:load> // Solid comp <- onMount called once
<Intro > // Astro comp
<AnimatedIntroBackground client:load /> // Solid comp <- onMount called twice
</Intro>
....
</Pagination>
</Layout>
I use the Solid children()-helper to resolve children (in Pagination I measure the size of all children) .
Any clues or pointers?