Curated Video
React JS Masterclass - Go From Zero To Job Ready - Dynamic Title / 110
Here, you will learn more about a styled-component module, which allows us to write CSS within JavaScript in a very modular and reusable way in React instead of having one global dynamic class.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Rating Component / 105
For the final checkout page to perform the next set of actions, you will learn how to implement an order confirmation before proceeding with the last payment order.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Products Page / 103
In this lecture, the next step is to start building the homepage of the eCommerce site. We will use components to tell React what we want to see on the screen.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Redux Store State / 094
Redux is a popular data store for JavaScript and React applications. It follows a central principle that data binding should flow.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Project Structure / 091
We will explore the most common and most accessible structure in use. I call it the flat structure as it has minimal directory nesting.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Project Deployment / 078
In this video, we will understand the first cloud deployment model, the private model, single-tenant environments accessible by a single organization.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Style Update / 077
This video demonstrates updating and stylizing the product list based on specific eCommerce store sales criteria.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Navigation Structure
In this video, we will complete the header section of the Cinemate project and increase font sizes, change logo appearance, activate the navigation link, adding dynamic classes and add hidden variables.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - TMDB API: Documentation / 064
In this lesson, we will learn to use the TMDB API, a free API that showcases movies and we will register to create our account on the API. We will then examine the documentation, send links, and other parameters to work with.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Theme: Change Background / 051
In this video, we will learn to create a state that will allow us to change the background of our TaskMate appearance based on the selection we make.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Local Storage: Store All Tasks / 050
Here, we will focus on our local storage. When we create tasks in our TaskMate, we need to provide the app a local storage to store the tasks that we create.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Infinite Loops / 042
In this lecture, we will discuss passing primitive values and passing a function using a callback. We will use the useRef hook to create a reference for the elements and values.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Custom Hook (useFetch) / 038
In this lecture, you will learn how to create a custom hook, which are functions that perform a task or fetches the information. You will learn to create a custom hook and call that hook in the code whenever we need information.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - List Output / 035
In this video, you will learn to complete the user interface for the useEffect hook. We will create a function and fetch a component to create a simple UI to display presentable information.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Add New Task / 029
After learning how to input data or tasks using forms and accepting the tasks or data using the submit button, we will now examine how to create new tasks, which will receive inputs from the tasks and add them to the task list we created...
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Event / 028
Let's learn to create submit buttons, enabling us to accept the input values through forms or input tabs. We can make the submit buttons and get inputs through data storage functions.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Event / 026
In this video, we will examine the listener that we will work with, which calls a function that will execute a task every time there is a change in the input, an anonymous function, or create a function based on our requirement.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Prop Drilling / 019
Here, we will understand the concept of prop drilling, which means we dig deep into the properties or props by passing the prop's components from one to another.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Props: Children / 018
In this video, you will learn about property child or children, which are offsets of the properties passed on from the parent props to the child props or children props.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Props: In-Depth Introduction / 017
After learning about components and component trees in this video, we will focus on props in detail. We will understand what props are and how they are used in codes and properties with dynamic values.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Multiple Components and Fragments / 016
After understanding components, we will now understand the various components in use. We will also create different components and understand what fragments and component trees are.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - Conditional Templates / 014
This video discusses a conditional template, which allows us to compare multiple elements with True or False return values and apply certain changes. These are templates by which we set up a condition, and it executes a code after...
Curated Video
React JS Masterclass - Go From Zero To Job Ready - useState: Array setState Value / 013
We will continue the lessons on useState; here, you will learn more about setTask. The lesson will show you how to delete the tasks we created in the previous lecture.
Curated Video
React JS Masterclass - Go From Zero To Job Ready - useState: Multiple Updates / 011
In this video, we will discuss the problems we face when using the setCount. The value of the Count remains constant; hence, when using multiple iterations of a setCount function, the value of the variables does not change either.