Todo List App using React Hooks | React Project for Beginners (in Hindi)

Поделиться
HTML-код
  • Опубликовано: 2 дек 2024

Комментарии • 5

  • @CoderPunch
    @CoderPunch 10 месяцев назад +1

    Hi,
    Cool stuff! Always explain logically all actions/steps you are taking while coding. It will help learners to understand the logical flow otherwise it will be just be copy and paste of the codes. Thanks

    • @TechBowl
      @TechBowl  10 месяцев назад +1

      Thanks for the feedback, will take care in the upcoming tutorials. I missed adding the key in the list. That's important, otherwise you will get a warning.

    • @CoderPunch
      @CoderPunch 10 месяцев назад

      Hi, I will wait for your react js project based series. Just explain the logical flow of the code this will help learners the "WHY" part. I am new to coding and learning for 1.8yrs still weak in building logic. I believe you will address this issue and your channel will grow. Learners want spoon feeding and that's the catch. Spoon feed us and we will shower our support and love.@@TechBowl

  • @Arbazbabu033
    @Arbazbabu033 6 месяцев назад

    Ek kaam kro. Sbse phle react k hook kisi series bnao. Hook kya hota h. Usestate, useEffect, useContext, useReducer, useRef, useCallback, useMemo..... Inke upar video bnao Or explain kro konsa hook kb or kaha use ho rha h with example.....

  • @CoderPunch
    @CoderPunch 10 месяцев назад +1

    This shows an error (Missing "key" prop for element in iterator)
    import React, { useState } from "react";
    import "./tabs.css";
    const Tabs = ({ selectedTab, setSelectedTab }) => {
    const tabs = ["All", "Active", "Completed"];
    return (


    {tabs.map((tab) => (
    setSelectedTab(tab)}
    >
    {tab}

    ))}


    );
    };
    export default Tabs;