Learning web development has been an exciting and challenging journey, and diving into the MERN MongoDB, Express.js, React, Node.js stack has shaped me as a developer. In this blog, I’ll share my experiences, lessons learned, and advice for those loo...
React applications slow down for one primary reason: unnecessary re-renders. You update a user's name, and suddenly your entire shopping cart re-renders. You toggle a modal, and your complex data table rebuilds itself. Sound familiar?
This cascade e...
Over the past year, I’ve built more side projects than I can count. Some made it to launch. Most didn’t. A few gained traction. One or two even brought in a little revenue. But the honest truth? The majority just vanished — as if they never existed.
...
Hi Guys,
SO here is what we are going to learn to code today:
const useLoggedInUser = => {
const loggedInUser, setLoggedInUser = useGlobalState"loggedInUser", {}
return loggedInUser, setLoggedInUser
}
We can export this function and ...