
Create a Notes App Using React
In this project, we will create a simple Notes App using React. The app will allow users to add, edit, and delete notes. We will break down the development into several steps, ensuring that each step meets specific requirements and adds essential functionality.
JavaScriptReact

Create a Pixel Art Animator with React
In this project, we'll walk you through building a simple Pixel Art Animator using React. By the end of this guide, you'll have a basic pixel art editor where you can draw your pixel art and see the resulting animation. This project is beginner-friendly and provides a fun way to dive into the world of React and pixel art!
ReactCSS

Building Christmas Wish List App with React
This project guides you through building a festive Christmas Wish List Builder web application using React. The app features a beautiful full-screen Christmas-themed background and a charming snowfall animation, enhancing the holiday spirit. Users can add wishes to a semi-transparent wish wall, and each wish is presented as a postcard. We'll use React for the frontend and CSS for styling and animations.
ReactCSS

Implementing React Navigation Features
In this project, you will learn how to implement navigation features in a React application. You will create a simple application with a navigation bar and pages that can be navigated to using links.
JavaScriptReact

Create Responsive Business Card with React
In this project, you will learn how to create a personal business card using React. The project involves building a responsive and interactive web application that allows users to input their personal information and generate a customized business card.
JavaScriptReact

React Colour Filter Application
In this project, you will learn how to build a colour filter application using React. The application will allow users to filter a list of colours by typing in the name of the colour they are looking for. This project will help you understand how to work with state management, event handling, and conditional rendering in React.
JavaScriptReact

Responsive Navigation with Custom React Hook
In this project, you will learn how to create a custom React Hook called useWindowSize to get the current window size and use it to conditionally render the navigation bar in a web application.
JavaScriptReact

Build Interactive React Components
In this project, you will learn how to create a simple show/hide functionality using React. You will implement a button that toggles the visibility of an image on the page.
JavaScriptReact

Rendering React Lists Introduction
Welcome to the React documentation! This lab will give you an introduction to rendering lists.
React

Conditional Rendering in React
Welcome to the React documentation! This lab will give you an introduction to conditional rendering.
React

Creating and Nesting Components
Welcome to the React documentation! This lab will give you an introduction to creating and nesting components.
React

React Hooks Introduction
Welcome to the React documentation! This lab will give you an introduction to using hooks.
React

Responding to Events
Welcome to the React documentation! This lab will give you an introduction to responding to events.
React

Updating the Screen
Welcome to the React documentation! This lab will give you an introduction to updating the screen.
React

Writing Markup with JSX
Welcome to the React documentation! This lab will give you an introduction to writing markup with JSX.
React

Your First React Lab
Hi there, welcome to LabEx! In this first lab, you'll learn the classic 'Hello, World!' program in React.
React

Textarea with Character Limit
In this lab, we will be building a limited textarea component using React. The purpose of this lab is to provide a hands-on experience in utilizing React hooks, such as useState() and useCallback(), to create a component that limits the number of characters a user can input in a textarea. By the end of this lab, you will have a functional textarea component that displays the character count and limits the number of characters a user can input.
React

Lazy Loading Images in React
In this lab, we will explore how to implement lazy loading images in a React application. Lazy loading improves page performance by delaying the loading of images until they are needed, reducing the initial load time and improving the user experience. We will use the Intersection Observer API and React hooks to create a reusable component that supports lazy loading images.
React