Oct 25, 2021
Thanks for the very thorough explanation.
I've been using the pattern described in this article (https://medium.com/swlh/bring-vue-named-slots-to-react-87684188f18e) to achieve the same effect. It filters `children` checking their type to decide where to render them, and I can declare props directly on the children or pass the root props on to each child if I need access.
This is before I knew they were called compound components. I'd love to hear your thoughts on the `children.find` approach.