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
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
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
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
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
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
Writing Markup with JSX
Welcome to the React documentation! This lab will give you an introduction to writing markup with JSX.
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
Rendering React Lists Introduction
Welcome to the React documentation! This lab will give you an introduction to rendering lists.
React
Creating and Nesting Components
Welcome to the React documentation! This lab will give you an introduction to creating and nesting components.
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
React Hooks Introduction
Welcome to the React documentation! This lab will give you an introduction to using hooks.
React
Conditional Rendering in React
Welcome to the React documentation! This lab will give you an introduction to conditional rendering.
React
React useGetSet Hook
In this lab, we will be exploring the use of the useGetSet hook in React. This hook allows us to create a stateful value and retrieve or update its value using getter and setter functions respectively. By the end of this lab, you will have a better understanding of how to use this hook in your React applications.
React
React useForm Hook
In this lab, we will be learning how to use the useForm hook in React to create a stateful value from the fields in a form. This will allow us to easily manage the state of our form inputs and update them as needed. By the end of this lab, you will have a better understanding of how to create and manage forms in React using the useForm hook.
React