DEV Community

Discussion on: Invoking React components from your Ember apps

Collapse
 
ignace profile image
Ignace Maes

Interesting read, thanks for sharing!

Did you notice any impact on build times?

And are there any issues when doing integration tests? As the rendering lifecycles of React are not aligned with Ember, how does that work when you expect a certain element to be present in the React root when the Ember component is rendered?

Collapse
 
rajasegar profile image
Rajasegar Chandran

I didn't notice any impact on build times. Need to check the rendering lifecycles though. So far, I have found one great limitation which is it is not possible to pass children (with HTML) to the React components. The React components should have their own children.