Build your own Reactjs from scratch - Chapter 3
Use babel to transform JSX to Plain Javascript
in the previous chapter we have seen
const Component = (props) => {
return <div id="root">Hello world</div>;
};
is equivalent to the following code
const Component = (props) => {
return React.crea...
nisham.hashnode.dev2 min read