React Todo List App Tutorial - Beginner React JS Project Using Hooks

React Todo List App Tutorial - Beginner React JS Project Using Hooks

Brian Design

3 года назад

394,205 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

A S
A S - 06.08.2023 16:00

I think everyone enjoyed this vid, but you don't have to do the tutorial all in one take. Take breaks when you need!

Ответить
Frog Nation
Frog Nation - 04.08.2023 10:04

thanks for the tutorial. i can see your variable params are set to a redish pinkish color. Can you teach me how to set those changes? I tried tokencolorcustomization but it seems to highlight other variables too :'(

Ответить
Myles Davyz
Myles Davyz - 20.06.2023 12:43

todo.isComplete is not working

Ответить
Luis Crespo L
Luis Crespo L - 11.06.2023 18:50

I got totally confused and something that It would take 10 minutes, but it took 50 min. You need to redo this tutorial, fix the mistakes, and make it easier and faster!

Ответить
Dhanush GH
Dhanush GH - 20.05.2023 15:47

thank you :)

Ответить
Bakare Abayomi
Bakare Abayomi - 19.05.2023 13:41

Thanks a lot.

Ответить
Ivan groźny
Ivan groźny - 18.05.2023 16:09

My face when you say "it is pretty simple .... " 😐 after trying to fix jsx syntax error for 20 minutes....

(return has to be wrapped in <> //code// </> or <div> </div>)

Ответить
Dazai plays
Dazai plays - 02.05.2023 16:25

Why i caanot seeanything whenever i input my todos, it doesnt show and also the icons pls help

Ответить
madiha shahid
madiha shahid - 01.05.2023 18:49

@Brian Design
m not able to edit ..?

Ответить
CoronaKlledMe (bot)
CoronaKlledMe (bot) - 12.04.2023 23:04

don't smash something to mic, bruh its really annoying

Ответить
The Debugging
The Debugging - 01.04.2023 10:07

getting confused with code at someplaces

Ответить
Hamida Sharifova
Hamida Sharifova - 05.03.2023 23:16

Where did the props.edit come from in TodoForm? I don't see that props passed in the ToDoList component

Ответить
Francisco Olivares
Francisco Olivares - 17.02.2023 16:53

Super Thanks bro!

Ответить
raven hooper
raven hooper - 30.12.2022 23:15

works perfect, I definitely subscribed...thanks!!!!

Ответить
Humer _
Humer _ - 29.12.2022 05:56

how did you italized the className, type, value etc.?

Ответить
【*Abdul Basith Siddiqui*】
【*Abdul Basith Siddiqui*】 - 24.12.2022 22:24

if (!todo.text || /^\s*$/.test(todo.text)) return;

we can also write the above line like this:

if (todo.text === "") return;

Ответить
Jeffrey Entekume
Jeffrey Entekume - 24.12.2022 01:52

I guess this is not for a react beginner 😢.....

Ответить
momparty
momparty - 18.12.2022 06:05

I wish you had explained that regular expression, or at least what it was trying to do. I couldn't get it to work so I just omitted it

Ответить
Abdessamad AHMALI
Abdessamad AHMALI - 11.12.2022 17:11

thanks a lot !

Ответить
The Vegan Cheetah
The Vegan Cheetah - 09.12.2022 04:51

what is the todo.isComplete? I tried googling isComplete but could not find anything

Ответить
Kaan Zenginer
Kaan Zenginer - 05.12.2022 17:29

which extensions are in use during this tutorial? which one autofills the html tags and which extension organised the code in the input tag for you?

Ответить
Aa AA
Aa AA - 24.11.2022 13:07

banger as always. Keep it up!

Ответить
Lotus441
Lotus441 - 20.11.2022 14:53

thanks

Ответить
Abhishek Verma
Abhishek Verma - 12.11.2022 21:29

Thanks

Ответить
Black_Hat
Black_Hat - 08.11.2022 15:25

this tutorial could't be an ideal . Fucking this developer

Ответить
Manoj Singh
Manoj Singh - 05.11.2022 20:37

It does not toggle between complete and not complete. I pasted the code from your github exactly, ALL the files and still does not work.

Ответить
Scatty Rot
Scatty Rot - 20.10.2022 17:40

Good tutorial . how visualize errors in browser ?

Ответить
Sevket Parlak
Sevket Parlak - 14.10.2022 23:47

Good Project Thanks..🤓

Ответить
Jonas Rocha
Jonas Rocha - 22.09.2022 22:54

AMAZING Rich!

Ответить
DARKTECHYT
DARKTECHYT - 18.09.2022 00:12

he could not clear console history he try refresh 😂

Ответить
Fox1k ***
Fox1k *** - 17.09.2022 20:42

Geat Job ! thx from Ukraine student

Ответить
Sireesha Ammadasani
Sireesha Ammadasani - 15.09.2022 14:05

have problem with the icons react

Ответить
Sireesha Ammadasani
Sireesha Ammadasani - 15.09.2022 12:50

@Brian Design using icons making the output not to render on browser
even after insta;;ing the packages also

Ответить
Gowtham Talkies
Gowtham Talkies - 13.09.2022 00:26

Props.onSubmit({ }) this is not working for me it's showing-props.onsubmit is not a function.

Ответить
Chaitanya joshi
Chaitanya joshi - 31.08.2022 13:46

This is absolutely not for beginners. I strongly suggest not to go with this one if you are a beginner. As a beginner I expect that you explain how pros and states are working. But I don't see that happening at all. Plus the way you call the props and then pass them is really confusing.

Ответить
avula ramu
avula ramu - 30.08.2022 11:45

It's NOT good Tutorial for beginners........

Ответить
Andrew Semakin
Andrew Semakin - 22.08.2022 13:34

What a theme you use?

Ответить
Bitu Codes
Bitu Codes - 21.08.2022 20:36

Later part got messed up

Ответить
Moosa Raza
Moosa Raza - 03.08.2022 13:54

The reason why console.log(...todos) not printing the latest added element is because setTodos is setting the value to todos. React doesn't immediately do that and it also takes a callback. So, javascript generally doesn't wait the setTodos to finish its work and console the items it have on todos. React plans out the re-rendering of the component when the state is updated. It doesn't do that immediately.

Ответить
Anabia Tahir
Anabia Tahir - 31.07.2022 20:26

this is such a bad tutorial for beginners with zero explanation to even aid what you're coding😰

Ответить
Martin
Martin - 27.07.2022 17:09

anyone can show me way how to use shorcuts to auto separate lines ?

Ответить
blkshadow450
blkshadow450 - 22.07.2022 00:53

beautiful! I loved the tutorial! I learned so much!

Ответить
JordanY
JordanY - 16.07.2022 19:04

Thanks for your time man, really, but first you need to start writing the code from the beginning and not from the functions. It is almost impossible to understand what you are doing, and in addition you are not explaining the concepts of React and the written functions.

Ответить
Justine Kenyansa
Justine Kenyansa - 01.07.2022 02:28

you did no include a github repo, but thanks for the video, its a greta one

Ответить