amanmishra.hashnode.devUnderstanding 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...Sep 21, 2024路3 min read
amanmishra.hashnode.devControlled 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...Sep 17, 2024路3 min read
amanmishra.hashnode.devMechanics 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...Sep 15, 2024路2 min read
amanmishra.hashnode.devUnderstanding 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...Sep 14, 2024路3 min read
amanmishra.hashnode.devThe 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...Aug 12, 2024路4 min read