
I keep talking about the other parts of React, but failed to post about: What is even React?
Can I eat that?
No. You cannot. But it can make you sob uncontrollably. I’m kidding.
So what is React?
React is a JavaScript library designed for building web applications known as single-page applications. These applications load a single HTML page and dynamically update content in response to user interactions without reloading the entire page.
React enhances the development process of web applications by enabling the division of code into reusable components.
As I have said in my previous posts, you can visualize those components as reusable blocks of code that you can use to build your app/website.
E.g. index.jsx
function Welcome() {
return
"Welcome to React"
;
}

What is a Component?
Think of it as a function that returns that you want to be showing on the screen just like the image above!
In React, we often use the ES6 syntax to define components due to its modern features.
Although the styles differ, both approaches essentially create a function that returns content for React to render.
index.jsx
const WelcomeToTheNewWorld
= () =>
{
return "Hello, new world";
};
function
WelcomeToTheOldWorld() {
return "Hello, old world";
}
If you’re a foodie, think of the component like a recipe. It instructs React what to “cook” (or display). You can reuse that recipe whenever it’s necessary.
Thus, whatever we return will be displayed once the component is rendered.
index.jsx
const Welcome = () => {
return
"I'll be displayed"
;
};
One of the best way to think about components as well: it is custom HTML tags but was bitten with super radioactive spider (yes, yes. I’ve been obsessing over Spiderman lately).
The function’s name defines the component which allows you to reuse it just like an HTML tag―just with the added functionality and flexibility.
index.jsx
const
MyComponent
= () => {
return "I'm a component";
};
How to tell Components apart from HTML
Components typically start with an uppercase letter unlike a regular HTML tag. Also, unlike the normal JavaScript functions, React components are CAPITALIZED.
In JavaScript: myComponent.
In React: MyComponent.
index.jsx
const
MyComponent
= () => {
return "I'm a component";
};
In React, components aren’t limited to outputting just plain text; they can also return HTML elements.
For example, you can design a component to output an HTML heading containing specific text.
index.jsx
const WelcomeComponent = () => {
return
<h1>
Hello, world
</h1>
;
};
What you’re looking at is JSX, which resembles HTML but is not the same. JSX is a unique syntax that React utilizes to allow the writing of HTML-like code within JavaScript.
index.jsx
const WelcomeComponent = () => {
return
<
h1
>
I'm an imposter</h1>;
};
Although JSX isn’t actual HTML, it resembles and behaves similarly to HTML. If you’re familiar with HTML, you’ll find JSX quite intuitive.
React transforms JSX into genuine HTML, allowing your browser to interpret and display it as it would traditional HTML.
index.jsx
const TextComponent = () => {
return
<p>
Welcome
</p>
;
};
In Summary
- You create a React component by writing a JavaScript function that returns JSX
- JSX: a syntax that looks like HTML but is actually JavaScript
Try out React for yourself! It will definitely save you lines and lines of code in the future (it’s also a great way to get you sobbing. LOL I’m joking).
-
Implementing Dark Mode in React
We have previously talked about useState before. A great way to create CSS classes on the fly is to use state variable! Here is an example of how to create Dark Mode in React by using string interpolation to construct the individual classes based on the state variable mode. index.html index.jsx App.jsx App.css So, if…
-
Understanding Props in React: A Comprehensive Guide
This content explains the concept of props in React, which allow data to be passed to components, making them dynamic. It covers how to access props as objects, pass multiple properties, and handle different data types. The importance of correctly rendering non-string values and using props in JSX is emphasized.
-
The Power of JSX: Combining HTML and JavaScript
JSX is a syntax extension for JavaScript that resembles HTML, used primarily in React to create components. It allows developers to write HTML-like code within JavaScript, enhancing readability and enabling dynamic web applications. With JSX, one can embed JavaScript expressions, making the integration of logic and UI layout seamless.
-
Organizing React Components for Better Code
The content discusses best practices for organizing React components in separate files for maintainability. It details the process of importing React, creating functional components, and exporting them. Additionally, it covers returning multiple elements and using named vs. default exports, emphasizing strategic organization for better code management.
-
Step-by-Step Guide to Rendering React Components
The content provides a step-by-step guide on rendering components in React. It emphasizes creating and linking HTML and JavaScript files, setting up the main component, and utilizing the createRoot function to manage rendering. The author injects humor while guiding readers through the essential concepts of React component rendering.
-
Introduction to React: Understanding the Basics
React is a JavaScript library for creating single-page web applications that dynamically update without page reloads. It organizes code into reusable components, akin to functions returning HTML-like JSX. This enhances development efficiency, as components can be reused, resembling custom HTML tags. Overall, React simplifies coding while improving functionality.
-
HTML Structure Explained: A Beginner’s Guide
The content discusses HTML, the foundational markup language for web development. It highlights its structure, including elements like tags and attributes. The post humorously reflects on the author’s learning journey while encouraging newbies by simplifying concepts like nesting elements and the importance of HTML in web design. It concludes with code examples.
-
Why Use Pure Functions in React Components?
Pure functions in JavaScript are self-contained and produce consistent results without affecting external variables or objects. They enhance clarity and maintainability in code, minimizing bugs. Unlike impure components that modify existing variables, pure components receive data as props. Understanding component relationships, like the React render tree and module dependency tree, further optimizes performance and structure.
-
React Components Explained: A Guide for Developers
This post analyzes React components, highlighting their crucial role in creating dynamic user interfaces. It details the types of components, including functional and class components, and explains props and state. Additionally, it covers lifecycle methods and emphasizes the importance of reusability and composition in building complex applications effectively.