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