React looks magical until you remove the parts that make it production-ready.

JSX is just function calls. Components are just functions. Virtual DOM nodes are just plain JavaScript objects. Rendering is "just" comparing two trees and patching the DOM.

Of course, real React is much more than that: hooks, scheduling, Fiber, context, refs,...