I would like to add a step effect to all the children who appear in the ReactCssTransitionsGroup but donβt know how to do it. I reviewed this question, but would like to try to do it using the transition group. If this is not possible, I will do something similar to the above related question.
my transition component is pretty simple:
Transitions({component: 'div', transitionName: 'stagger'}, [1, 2, 3, 4, 5].map(i => div({className: 'pure-u-md-1-3 pure-u-lg-1-4 medium-box demo', key: i}) ) )
source share