fulcro

Book: http://book.fulcrologic.com, Community Resources: https://fulcro-community.github.io/, RAD book at http://book.fulcrologic.com/RAD.html
hadils 2021-05-13T14:59:32.338700Z

I am confused by routing. When a component becomes the target of a route, does it also become the new "root" component of its children? I have read all the documentation available on Fulcro and watched the insturction Fulcro 3 videos, but there isn't a clear answer in my mind. My problem is that I have a child component and I cannot access it's props.

tony.kay 2021-05-13T17:29:21.338800Z

If you are not seeing props, it is almost certainly a problem with the composition of initial state, or your destructuring and passing of props.

tony.kay 2021-05-13T17:29:48.339Z

All a router does is change its query and which child it renders. The API lets you compose them and send instructions to multiple routers via interpretation of the nesting, but really each router is just a dyn query and a render body that chooses a child.

hadils 2021-05-13T19:09:45.339400Z

Thank you very much @tony.kay. It was indeed my props. I was loading a value into the wrong place.