I think Mike Thompson answered a similar question on clojurians clojurescript slack channel:
https://clojurians.slack.com/archives/re-frame/p1437120156000114 Quoting from the original reply: ------------------------ 1. in the Form2 parent component, use a `(subscribe [:something])` to obtain a reactive value (called say, x) 2. make a Form3 child component, which has life-cycle methods 3. in the parent, render the child passing the dereferencing `x` `[child @x]` So in effect, pass a changable value into the child. Value, not ratom! When the value changes the parent will be rerendered, passing in the new value to the child. That will trigger lifecycle fns on the child. (edited) Hope that helps ------------------------ Hope this is useful -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/clojurescript.
