AMAman Mishrainamanmishra.hashnode.dev路Sep 21, 2024 路 3 min readUnderstanding useRef in ReactA Guide to Managing References Without Re-renders In React, one of the most powerful hooks available is useRef. This hook allows us to persist values between renders without triggering a re-render, making it an essential tool for managing certain typ...00
AMAman Mishrainamanmishra.hashnode.dev路Sep 17, 2024 路 3 min readControlled Elements in React: A Practical DemoIn React, controlled components are a fundamental concept that allow you to manage the state of form elements through React's state management. This approach ensures that form inputs are controlled by React, making your UI more predictable and easier...00
AMAman Mishrainamanmishra.hashnode.dev路Sep 15, 2024 路 2 min readMechanics of State in ReactIn React, we do not manipulate the DOM directly when we want to update a component's view. This is because React is declarative鈥攎eaning we define how the UI should look at any given state, and React takes care of updating the DOM as needed. But If We...00
AMAman Mishrainamanmishra.hashnode.dev路Sep 14, 2024 路 3 min readUnderstanding State in ReactIn React, state refers to data that a component maintains over time, acting like the component鈥檚 memory. It's essential for storing information that needs to persist throughout the lifecycle of the app. For example, state is used in features like not...01L
AMAman Mishrainamanmishra.hashnode.dev路Aug 12, 2024 路 4 min readThe Evolution of DevOpsDevOps has transformed the landscape of software development, turning chaotic, manual processes into seamless, automated pipelines. But how did we get here? In this blog, we'll explore the key milestones that have shaped DevOps over the past decade a...00