Build your own Reactjs from scratch - Chapter 4
Implementing JSX
In previous chapter we learned how to use babel to transform JSX to Plain Javascript
in this chapter, we will write the actual implementation transformer function jsx()
The component
const ui = () => <div id="root">Hello world</div>
is equivalent to...
nisham.hashnode.dev2 min read