Розмір відео: 1280 X 720853 X 480640 X 360
Показувати елементи керування програвачем
Автоматичне відтворення
Автоповтор
Best channel for beginners
Please do more simple projects for beginners on react js.. your videos really helped us pls do ❤
Thank you for explaining well.and everything is clear now.
Your efforts are great. Pls make more small projects. Its great to learn
I implemented this in my e-commerce project. Thanks, Bro
Nice Video with great Explanation.love from DELHI
Great Teaching Style
thats great video on Todos list thanks bro
bhai apne bho achha samjhaya lekin mujhe to node-persist ka use kar ke bnana tha api ke through le me after watching full video
create update button and if i click on update button then then input field button also change in update button after update
Best explanation🙌👍
bhai page refresh par data na delete ho tod o list se ek baar agar add hojaye to localStorage wala concept kaise lagega isme ye batao
thankyou so much for this video. really helpful!
Bhai isme edit feature bhi add karke ek video bata sakte ho?
Thank u sir u solved my big problem
great work Sir please make more videos.
Mujay issues face horaha hy can u help me my terminal is giving me errors when im using npx Because i use to use npm in command prompt terminal
Vrooo thank you soo much.. And i really mean it. U made my day❤
Thanks for your feedback.
loved your work
Very well explained 🎉❤Thank you 😊
i can't find your CSS help me🙏🙏🙏🙏
Sir Can you help me with the progress bar along with the description
very well explianed. we need more content from your side.
usefull video....👌👌💯💯💯💯💯💯
bhai yeh shortcut bata doh div>.input-container ho ni ra yeh kaise set kare apne laptop par
very informative
Best ❤
Sir page refresh ho kr task remove ho raha hai is code mai ... That's are not good page refresh nahi hona chai hai write the code of does't page refresh.
You can store values in local storage. Then values will not be removed when the page is refreshed.
It's a great one brother! well Explained 💕❤
Complete video series bnao with project...
Best for beginners
when we refresh our page the whole list is deleted,,, can we use firebase to avoid this.. please reply
Yes, You can use. Also you can use local storage.
@@computernerds bro i tried using local storage but i couldn't get 😢, can you help me with that?? I'll send you the code below
@@computernerds import React, { useState , useEffect} from 'react'import "./App.css"import './App.css';import TodoInput from './components/TodoInput'import TodoList from './components/TodoList';function App() { const [listTodo, setListTodo] = useState([]); useEffect(() => { const items = JSON.parse(localStorage.getItem('items')); if (items) { setListTodo(items); } }, []); useEffect(() => { localStorage.setItem('items', JSON.stringify(listTodo)); }, [listTodo]); let addList = (inputText) => { if(inputText===''){ alert("type something"); } else { setListTodo([...listTodo,inputText]); } } const deleteListItem = (key)=>{ let newListTodo = [...listTodo]; newListTodo.splice(key,1) setListTodo([...newListTodo]) } return ( TODO {listTodo.map((listItem,i)=>{ return( ) })} );}export default App;
Well explained I am learning react and your video really helpful
props.addlist not working...any one help
What is the problem occuring? Check the code once and then try.
@@computernerds bro I'm trying same code but it is showing props is not defined..no-undef
Can u pls help
@@CSSachinSasane Check if its 'addList' or 'addlist'. check if your naming convention is proper or not.
@@CSSachinSasane check if you are passing array as a parameter to setTodoList
Thank you ❤
great tutorial brother, very well explained!
Code run hua bhai
When i click on add button my last list is deleted
in this you cannot edit the existing todo list item
Css file not available
It Was nice
Sir isme hum delete k sath sath update kse kre
osm video bro
delete not working
same problem
you should provide the github link so if error are there we can check
Have you checked the description?
@@computernerds now i got it
bhai edit ke lie yo bataya hin nai😢
Javascript and reactjs k upar
super bhaiya20/09/2024
Good
Enterkey logic not working
All logic working please check your code
@@praveensharmapraveensharma2325 Ya , sahi ho gya tha mera
please sir ek weather app banano react js se
edit ke liye liyetoh bataya hi nahi
Please make a multi Language project for multiple pages using Json data ❤️
@@programwithgoutam3556 boring
❤
Nai chal ra bhai
Your code was not run
Follow the convention like todoInput is wrong, TodoInput is right. Idk the reason behind it but it worked for me.
Le jate he Bahar mulk apni olad ko..phir expect krte he k Desi ban k Rahe ge .
Not good contênt
Ok
Best channel for beginners
Please do more simple projects for beginners on react js.. your videos really helped us pls do ❤
Thank you for explaining well.and everything is clear now.
Your efforts are great. Pls make more small projects. Its great to learn
I implemented this in my e-commerce project. Thanks, Bro
Nice Video with great Explanation.
love from DELHI
Great Teaching Style
thats great video on Todos list thanks bro
bhai apne bho achha samjhaya lekin mujhe to node-persist ka use kar ke bnana tha api ke through le me after watching full video
create update button and if i click on update button then then input field button also change in update button after update
Best explanation🙌👍
bhai page refresh par data na delete ho tod o list se ek baar agar add hojaye to localStorage wala concept kaise lagega isme ye batao
thankyou so much for this video. really helpful!
Bhai isme edit feature bhi add karke ek video bata sakte ho?
Thank u sir u solved my big problem
great work Sir please make more videos.
Mujay issues face horaha hy can u help me my terminal is giving me errors when im using npx
Because i use to use npm in command prompt terminal
Vrooo thank you soo much.. And i really mean it. U made my day❤
Thanks for your feedback.
loved your work
Very well explained 🎉❤Thank you 😊
Thanks for your feedback.
i can't find your CSS help me
🙏🙏🙏🙏
Sir Can you help me with the progress bar along with the description
very well explianed. we need more content from your side.
usefull video....👌👌💯💯💯💯💯💯
bhai yeh shortcut bata doh div>.input-container ho ni ra yeh kaise set kare apne laptop par
very informative
Best ❤
Sir page refresh ho kr task remove ho raha hai is code mai ... That's are not good page refresh nahi hona chai hai
write the code of does't page refresh.
You can store values in local storage. Then values will not be removed when the page is refreshed.
It's a great one brother! well Explained 💕❤
Complete video series bnao with project...
Best for beginners
when we refresh our page the whole list is deleted,,, can we use firebase to avoid this..
please reply
Yes, You can use. Also you can use local storage.
@@computernerds bro i tried using local storage but i couldn't get 😢, can you help me with that?? I'll send you the code below
@@computernerds import React, { useState , useEffect} from 'react'
import "./App.css"
import './App.css';
import TodoInput from './components/TodoInput'
import TodoList from './components/TodoList';
function App() {
const [listTodo, setListTodo] = useState([]);
useEffect(() => {
const items = JSON.parse(localStorage.getItem('items'));
if (items) {
setListTodo(items);
}
}, []);
useEffect(() => {
localStorage.setItem('items', JSON.stringify(listTodo));
}, [listTodo]);
let addList = (inputText) => {
if(inputText===''){
alert("type something");
}
else {
setListTodo([...listTodo,inputText]);
}
}
const deleteListItem = (key)=>{
let newListTodo = [...listTodo];
newListTodo.splice(key,1)
setListTodo([...newListTodo])
}
return (
TODO
{listTodo.map((listItem,i)=>{
return(
)
})}
);
}
export default App;
Well explained I am learning react and your video really helpful
props.addlist not working...any one help
What is the problem occuring? Check the code once and then try.
@@computernerds bro I'm trying same code but it is showing props is not defined..no-undef
Can u pls help
@@CSSachinSasane Check if its 'addList' or 'addlist'. check if your naming convention is proper or not.
@@CSSachinSasane check if you are passing array as a parameter to setTodoList
Thank you ❤
great tutorial brother, very well explained!
Code run hua bhai
When i click on add button my last list is deleted
in this you cannot edit the existing todo list item
Css file not available
It Was nice
Sir isme hum delete k sath sath update kse kre
osm video bro
delete not working
same problem
you should provide the github link so if error are there we can check
Have you checked the description?
@@computernerds now i got it
bhai edit ke lie yo bataya hin nai😢
Javascript and reactjs k upar
super bhaiya
20/09/2024
Good
Enterkey logic not working
All logic working please check your code
@@praveensharmapraveensharma2325
Ya , sahi ho gya tha mera
please sir ek weather app banano react js se
edit ke liye liyetoh bataya hi nahi
Please make a multi Language project for multiple pages using Json data ❤️
Code run hua bhai
@@programwithgoutam3556 boring
❤
Nai chal ra bhai
Your code was not run
Follow the convention like todoInput is wrong, TodoInput is right. Idk the reason behind it but it worked for me.
Le jate he Bahar mulk apni olad ko..phir expect krte he k Desi ban k Rahe ge .
Not good contênt
Ok