+ 1
What is the difference between calling a function(component) or writing its name in a tag when we render it from ReactDOM?
Is JSX infact like a function that when we call it returns objects to be rendered on the page? https://code.sololearn.com/WFhA3b4GZY2C/?ref=app
2 Respuestas
+ 1
You can read an in depth explanation of React Components here:
https://reactjs.org/docs/react-component.html
To give you a short answer here, "yes." When you create a component in React, the JSX is an object that is then rendered to the view with JavaScript. That is why the render method is required for all components and why the argument for the render method is HTML; React components exist on the page through the render method.
0
Sammy Raven thanks🙏🏽