Tag: JSX

Demystifying JSX: building your own JSX parser from scratch

While it’s not a web standard and Web Components are somewhat trying to replace it, JSX is an amazing technology that came with React to simplify the way we write HTML and JavaScript together. But how does it work exactly? I mean, yes, we can return JSX from a React component, but we all kn...

Mastering React Components, Props, and JSX for Beginners

In this comprehensive guide, we will dive into the fundamentals of React, focusing on components, props, and JSX. Using a hotel menu example, we’ll learn how to create reusable UI components, pass data through props, and leverage JSX to build dynamic and interactive user interfaces. Whether yo...