
React Lists and Keys
In this lab, you will learn how to render lists of data in React and the importance of using keys for list items.
React

React JSX Basics
In this lab, you will learn the fundamentals of JSX syntax in React, including writing elements, embedding expressions, and using attributes.
React

React Forms Basics
In this lab, you will learn the fundamentals of handling forms in React, including controlled components, state management, and event handling.
React

React Event Handling
In this lab, you will learn the fundamentals of handling events in React, such as clicks, by attaching event handlers to JSX elements and defining the corresponding functions.
React

React Conditional Rendering
In this lab, you will learn the fundamental techniques for conditional rendering in React, including using the ternary operator, logical &&, variables, and state to dynamically display components.
React

React State with Hooks
In this lab, you will learn the fundamentals of managing component state in React using the `useState` Hook by building a simple counter application.
React

React Components Introduction
In this lab, you will learn the fundamentals of React components by creating, exporting, and importing a simple functional component.
React

React Setup and First App
In this lab, you will learn the fundamental steps to set up a new React project and run your first React application using Vite.
React

React Props
In this lab, you will learn the fundamentals of React props, including how to pass data from parent to child components, access props, use destructuring, and set default values.
React

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

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

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

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

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

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

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

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