ขนาดวิดีโอ: 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 ❤
Your efforts are great. Pls make more small projects. Its great to learn
Thank you for explaining well.and everything is clear now.
Great Teaching Style
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
Nice Video with great Explanation.love from DELHI
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
thats great video on Todos list thanks bro
great work Sir please make more videos.
Best explanation🙌👍
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
I implemented this in my e-commerce project. Thanks, Bro
Bhai isme edit feature bhi add karke ek video bata sakte ho?
create update button and if i click on update button then then input field button also change in update button after update
Sir Can you help me with the progress bar along with the description
thankyou so much for this video. really helpful!
Very well explained 🎉❤Thank you 😊
Thanks for your feedback.
Complete video series bnao with project...
very well explianed. we need more content from your side.
Thank u sir u solved my big problem
Vrooo thank you soo much.. And i really mean it. U made my day❤
loved your work
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
It's a great one brother! well Explained 💕❤
usefull video....👌👌💯💯💯💯💯💯
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;
great tutorial brother, very well explained!
Code run hua bhai
Well explained I am learning react and your video really helpful
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.
Sir isme hum delete k sath sath update kse kre
bhai yeh shortcut bata doh div>.input-container ho ni ra yeh kaise set kare apne laptop par
i can't find your CSS help me🙏🙏🙏🙏
very informative
Best ❤
Css file not available
Best for beginners
When i click on add button my last list is deleted
in this you cannot edit the existing todo list item
Thank you ❤
osm video bro
you should provide the github link so if error are there we can check
Have you checked the description?
@@computernerds now i got it
It Was nice
delete not working
same problem
super bhaiya20/09/2024
Javascript and reactjs k upar
Enterkey logic not working
All logic working please check your code
@@praveensharmapraveensharma2325 Ya , sahi ho gya tha mera
Good
please sir ek weather app banano react js se
❤
bhai edit ke lie yo bataya hin nai😢
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 ❤
Your efforts are great. Pls make more small projects. Its great to learn
Thank you for explaining well.and everything is clear now.
Great Teaching Style
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
Nice Video with great Explanation.
love from DELHI
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
thats great video on Todos list thanks bro
great work Sir please make more videos.
Best explanation🙌👍
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
I implemented this in my e-commerce project. Thanks, Bro
Bhai isme edit feature bhi add karke ek video bata sakte ho?
create update button and if i click on update button then then input field button also change in update button after update
Sir Can you help me with the progress bar along with the description
thankyou so much for this video. really helpful!
Very well explained 🎉❤Thank you 😊
Thanks for your feedback.
Complete video series bnao with project...
very well explianed. we need more content from your side.
Thank u sir u solved my big problem
Vrooo thank you soo much.. And i really mean it. U made my day❤
Thanks for your feedback.
loved your work
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
It's a great one brother! well Explained 💕❤
usefull video....👌👌💯💯💯💯💯💯
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;
great tutorial brother, very well explained!
Code run hua bhai
Well explained I am learning react and your video really helpful
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.
Sir isme hum delete k sath sath update kse kre
bhai yeh shortcut bata doh div>.input-container ho ni ra yeh kaise set kare apne laptop par
i can't find your CSS help me
🙏🙏🙏🙏
very informative
Best ❤
Css file not available
Best for beginners
When i click on add button my last list is deleted
in this you cannot edit the existing todo list item
Thank you ❤
osm video bro
you should provide the github link so if error are there we can check
Have you checked the description?
@@computernerds now i got it
It Was nice
delete not working
same problem
super bhaiya
20/09/2024
Javascript and reactjs k upar
Enterkey logic not working
All logic working please check your code
@@praveensharmapraveensharma2325
Ya , sahi ho gya tha mera
Good
please sir ek weather app banano react js se
❤
bhai edit ke lie yo bataya hin nai😢
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