Re: Reagent: ReactCSSTransitionGroup

2014-03-01 Thread Chris Sutela
Thanks so much Dan, that was a great help! the code ends up being:* (def ctg (-> js/React (aget "addons") (aget "CSSTransitionGroup"))) * but yeah, you were totally correct :) On Friday, February 28, 2014 5:34:34 AM UTC-8, Dan Holmsand wrote: > > Yes, Reagent doesn't know about React components

Re: Reagent: ReactCSSTransitionGroup

2014-02-28 Thread Dan Holmsand
Yes, Reagent doesn't know about React components that don't live in React.DOM (ReactCSSTransitionGroup is in React.addons). So what you would need to do is to get hold of the component "constructor", with something like (def ctg (-> js/React (aget "addons") (aget "ReactCSSTransitionGroup"))) a

Reagent: ReactCSSTransitionGroup

2014-02-28 Thread Chris Sutela
is there a recommended way of accessing the ReactCSSTransitionGroup tag that is a part of react-wtih-add-ons.js? Specifically I am having trouble avoiding an Uncaught Error: Assert failed: Unknown tag: ':ReactCSSTransitionGroup' -- You received this message because you are subscribed to the