Shubham Bankar
23 posts

Shubham Bankar
@BankarVaibhs
🚀 Software Engineer | Full-Stack Dev 💻 C/C++, JS/TS, React, Node.js, FastAPI ⚡ Building QuoteBox 📜 | Habit Tracking App 📊 🎯 Problem-Solver | AI & Automatio
Yavatmal Maharashtra Katılım Ekim 2024
16 Takip Edilen1 Takipçiler

Which React pattern is this ?
// Timer.js
function Timer({ children }) {
const [seconds, setSeconds] = React.useState(0);
React.useEffect(() => {
const id = setInterval(() => setSeconds((s) => s + 1), 1000);
return () => clearInterval(id);
}, []);
return children(seconds);
}
{(s) =>
And what could be a better modern approach than this pattern?
Seconds: {s}
}
English

Absolutely interested! 🙌
I’m actively working with React, Full Stack Development, Backend systems, and Freelancing, and I enjoy learning, sharing real-world experiences, and building in public.
Looking forward to meaningful connections, knowledge sharing, and growing together 🚀
Let’s connect and collaborate!
#React #FullStackDevelopment #SoftwareDevelopment #BuildInPublic #Freelancing #LearningInPublic #LetsConnect
English

Hey @X
I’m looking to #CONNECT with people interested in
React
DSA
Full Stack Development
Frontend and Backend
Java
Python
DevOps
AI ML
Data Science
LeetCode
Freelancing
Startups
Software Development
Let’s grow together share learn and build in public
#letsconnect #BuildInPublic
English

Which hook is used to manage state in a functional component?
🔘 useEffect
🔘 useState
🔘 useMemo
🔘 useRef
#ReactJS #LearnReact #FrontendDev
English

Post 1 (Concept-based – very engaging)
🚀 React.js Question
What is the main purpose of useEffect in React?
🔘 Managing side effects
🔘 Creating components
🔘 Updating state
🔘 Handling events
#ReactJS #WebDevelopment #Frontend #JavaScript
English

@SumitM_X Key should be unique as list can change means it can update/delete list item then it cause re-rendering issues as key is not unique
English











