Qu'est-ce que le rendu dans React Native

React renders HTML to the web page by using a function called render().
The purpose of the function is to display the specified HTML code 
inside the specified HTML element. In the render() method, we can read 
props and state and return our JSX code to the root component of our app.

This works the same way in mobile with native components
Steve