Fork me on GitHub
#reagent
<
2016-05-05
>
superstructor00:05:36

how are native React classes usually used as props to other native React classes that have been adapted with adapt-react-class; e.g. only this works: [(r/adapt-react-class (aget js/MaterialUI "IconMenu")) {:icon-button-element ((aget js/MaterialUI "IconButton") {:touch true} (icons/navigation-expand-more)) throws exception: [(r/adapt-react-class (aget js/MaterialUI "IconMenu")) {:icon-button-element ((r/adapt-react-class (aget js/MaterialUI "IconButton")) {:touch true} (icons/navigation-expand-more)) and also throws exception: [(r/adapt-react-class (aget js/MaterialUI "IconMenu")) {:icon-button-element ((r/reactify-component (r/adapt-react-class (aget js/MaterialUI "IconButton")) {:touch true} (icons/navigation-expand-more)))

superstructor00:05:53

does this mean you have to use a mix of both adapted and native React classes ?