Todo List Application using React JS in Hindi | React Projects for beginners in Hindi

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 ธ.ค. 2024

ความคิดเห็น • 78

  • @hemantaggarwal2216
    @hemantaggarwal2216 ปีที่แล้ว +3

    Best channel for beginners

  • @nishabhowmick888
    @nishabhowmick888 9 หลายเดือนก่อน +2

    Please do more simple projects for beginners on react js.. your videos really helped us pls do ❤

  • @malikmaam9168
    @malikmaam9168 ปีที่แล้ว +1

    Your efforts are great. Pls make more small projects. Its great to learn

  • @sports4yoo
    @sports4yoo ปีที่แล้ว +1

    Thank you for explaining well.and everything is clear now.

  • @Muhammad_Mateen_00_11
    @Muhammad_Mateen_00_11 4 หลายเดือนก่อน

    Great Teaching Style

  • @kapilrana4043
    @kapilrana4043 9 หลายเดือนก่อน

    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

  • @ankitchaurasiya529
    @ankitchaurasiya529 7 หลายเดือนก่อน

    Nice Video with great Explanation.
    love from DELHI

  • @EmifirE123
    @EmifirE123 ปีที่แล้ว

    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

  • @atifjahangir3728
    @atifjahangir3728 3 หลายเดือนก่อน

    thats great video on Todos list thanks bro

  • @SlivaSays
    @SlivaSays ปีที่แล้ว

    great work Sir please make more videos.

  • @nikhildepale7784
    @nikhildepale7784 6 หลายเดือนก่อน

    Best explanation🙌👍

  • @ms.perfectionist2835
    @ms.perfectionist2835 ปีที่แล้ว

    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

  • @Robin_biju
    @Robin_biju ปีที่แล้ว +2

    I implemented this in my e-commerce project. Thanks, Bro

  • @techmay1201
    @techmay1201 11 หลายเดือนก่อน

    Bhai isme edit feature bhi add karke ek video bata sakte ho?

  • @faisalnaeem3740
    @faisalnaeem3740 5 หลายเดือนก่อน

    create update button and if i click on update button then then input field button also change in update button after update

  • @rounaksaha2726
    @rounaksaha2726 ปีที่แล้ว

    Sir Can you help me with the progress bar along with the description

  • @ponkhibaruah3422
    @ponkhibaruah3422 ปีที่แล้ว

    thankyou so much for this video. really helpful!

  • @nazranbibi
    @nazranbibi ปีที่แล้ว

    Very well explained 🎉❤Thank you 😊

  • @Arbazbabu033
    @Arbazbabu033 9 หลายเดือนก่อน

    Complete video series bnao with project...

  • @raunaksahu2426
    @raunaksahu2426 ปีที่แล้ว +1

    very well explianed. we need more content from your side.

  • @navjotsinghsidhu3590
    @navjotsinghsidhu3590 5 หลายเดือนก่อน

    Thank u sir u solved my big problem

  • @shavedhayuvarajan1379
    @shavedhayuvarajan1379 ปีที่แล้ว

    Vrooo thank you soo much.. And i really mean it. U made my day❤

  • @AS-xz2ni
    @AS-xz2ni ปีที่แล้ว

    loved your work

  • @CSSachinSasane
    @CSSachinSasane ปีที่แล้ว +2

    props.addlist not working...any one help

    • @computernerds
      @computernerds  ปีที่แล้ว +1

      What is the problem occuring? Check the code once and then try.

    • @CSSachinSasane
      @CSSachinSasane ปีที่แล้ว +1

      @@computernerds bro I'm trying same code but it is showing props is not defined..no-undef

    • @CSSachinSasane
      @CSSachinSasane ปีที่แล้ว +1

      Can u pls help

    • @sagargholap9605
      @sagargholap9605 ปีที่แล้ว

      @@CSSachinSasane Check if its 'addList' or 'addlist'. check if your naming convention is proper or not.

    • @Meet1997
      @Meet1997 ปีที่แล้ว

      @@CSSachinSasane check if you are passing array as a parameter to setTodoList

  • @madhunagidi5611
    @madhunagidi5611 ปีที่แล้ว

    It's a great one brother! well Explained 💕❤

  • @atultilekar-gc7pl
    @atultilekar-gc7pl ปีที่แล้ว

    usefull video....👌👌💯💯💯💯💯💯

  • @varun_sharma004
    @varun_sharma004 ปีที่แล้ว

    when we refresh our page the whole list is deleted,,, can we use firebase to avoid this..
    please reply

    • @computernerds
      @computernerds  ปีที่แล้ว +1

      Yes, You can use. Also you can use local storage.

    • @pratheekbayari4255
      @pratheekbayari4255 ปีที่แล้ว +1

      ​@@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

    • @pratheekbayari4255
      @pratheekbayari4255 ปีที่แล้ว

      @@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;

  • @ramanarc
    @ramanarc ปีที่แล้ว

    great tutorial brother, very well explained!

  • @rituyadav3545
    @rituyadav3545 ปีที่แล้ว

    Well explained I am learning react and your video really helpful

  • @afzalguru643
    @afzalguru643 7 หลายเดือนก่อน

    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.

    • @computernerds
      @computernerds  7 หลายเดือนก่อน

      You can store values in local storage. Then values will not be removed when the page is refreshed.

  • @jatinvashist691
    @jatinvashist691 ปีที่แล้ว

    Sir isme hum delete k sath sath update kse kre

  • @AbhishekSinghRautela-u2v
    @AbhishekSinghRautela-u2v 7 หลายเดือนก่อน

    bhai yeh shortcut bata doh div>.input-container ho ni ra yeh kaise set kare apne laptop par

  • @rajkapoor6658
    @rajkapoor6658 ปีที่แล้ว

    i can't find your CSS help me
    🙏🙏🙏🙏

  • @umairali2360
    @umairali2360 6 หลายเดือนก่อน

    very informative

  • @komal842
    @komal842 ปีที่แล้ว

    Best ❤

  • @vishakhadiwate7964
    @vishakhadiwate7964 ปีที่แล้ว

    Css file not available

  • @farhanaziz1177
    @farhanaziz1177 ปีที่แล้ว

    Best for beginners

  • @rashijain8327
    @rashijain8327 ปีที่แล้ว

    When i click on add button my last list is deleted

  • @Replcate
    @Replcate 8 หลายเดือนก่อน

    in this you cannot edit the existing todo list item

  • @preranabaruah4029
    @preranabaruah4029 ปีที่แล้ว

    Thank you ❤

  • @nter_10_ment52
    @nter_10_ment52 ปีที่แล้ว

    osm video bro

  • @ajtodream1935
    @ajtodream1935 ปีที่แล้ว +1

    you should provide the github link so if error are there we can check

    • @computernerds
      @computernerds  ปีที่แล้ว

      Have you checked the description?

    • @ajtodream1935
      @ajtodream1935 ปีที่แล้ว

      @@computernerds now i got it

  • @azizulhasan1867
    @azizulhasan1867 ปีที่แล้ว

    It Was nice

  • @pdp_29
    @pdp_29 ปีที่แล้ว +1

    delete not working

  • @csengineer8819
    @csengineer8819 3 หลายเดือนก่อน

    super bhaiya
    20/09/2024

  • @Arbazbabu033
    @Arbazbabu033 9 หลายเดือนก่อน

    Javascript and reactjs k upar

  • @shikhayadav3673
    @shikhayadav3673 ปีที่แล้ว

    Enterkey logic not working

  • @anish_rawat
    @anish_rawat ปีที่แล้ว

    Good

  • @adarshpandey838
    @adarshpandey838 ปีที่แล้ว

    please sir ek weather app banano react js se

  • @parveen1341
    @parveen1341 9 หลายเดือนก่อน

  • @CrazyAshu34
    @CrazyAshu34 5 หลายเดือนก่อน

    bhai edit ke lie yo bataya hin nai😢

  • @amanyadav6093
    @amanyadav6093 8 หลายเดือนก่อน

    edit ke liye liyetoh bataya hi nahi

  • @mohammadmotiwala7672
    @mohammadmotiwala7672 ปีที่แล้ว +1

    Please make a multi Language project for multiple pages using Json data ❤️

  • @abeerafazal6700
    @abeerafazal6700 10 หลายเดือนก่อน

    Nai chal ra bhai

  • @programwithgoutam3556
    @programwithgoutam3556 ปีที่แล้ว +1

    Your code was not run

    • @bilalraza9170
      @bilalraza9170 ปีที่แล้ว

      Follow the convention like todoInput is wrong, TodoInput is right. Idk the reason behind it but it worked for me.

  • @abeerafazal6700
    @abeerafazal6700 10 หลายเดือนก่อน

    Le jate he Bahar mulk apni olad ko..phir expect krte he k Desi ban k Rahe ge .

  • @PrajwalPande-gw7ph
    @PrajwalPande-gw7ph ปีที่แล้ว

    Not good contênt