Jacqueline Trappmy-how-to-blog.hashnode.dev·Jan 17, 2025How to Format your React App for MobileThese days, it's increasingly common for employers to review applications on their mobile devices. Ensuring your application works seamlessly across various screen sizes is essential. Fortunately, React, JavaScript, and CSS offer a range of tools tha...JavaScript
Sergey Shishkinserj-aleks.hashnode.dev·Jan 7, 2025namespacesВ PicoLisp реализована концепция пространства имен. Во-первых, естественно, чтобы избежать потенциального конфликта имен при создании, например транзитивных символов, по умолчанию создается временное пространство имен, Здесь сам автор PicoLisp отвеча...picolisp
Muhammad Abubakarabubakarwebdev.hashnode.dev·Jan 4, 2025Avoid These 5 Common React Context API Mistakes That Could Harm Your AppIt’s been more than five years since I’ve started using React. I have worked with many diverse React codebases and have learned some of the most common mistakes that React Developers usually make while using Context API. The React Context API was rel...199 readsReact
Tuan Tran Vanblog.tuanhadev.tech·Jan 4, 2025All The New Features In ReactReact’s journey began in 2011 when Facebook engineers created it to manage the increasingly complex interface of their rapidly growing platform. React’s initial focus was on re-rendering only the necessary parts of the UI, leading to improved perform...React
Sreerag Pavithranblog.iamsreerag.com·Jan 4, 2025State Management with React ContextManaging state in a React application can become challenging, especially when you need to pass data through multiple levels of components. React Context provides a way to share values between components without having to explicitly pass props through...React
Arka Infotecharkainfotech.hashnode.dev·Jan 2, 2025Creating and Managing Global State in Next.js with Context APIIntroduction In modern web development, managing state is one of the most important aspects of building scalable and maintainable applications. In a Next.js application, managing state globally across components can become tricky as the app grows in ...33 reads#GlobalState
Sahana S Acharyareact-diaries.hashnode.dev·Dec 29, 2024Context API NotesIntroduction When working with React, you often need to share data between components. The traditional way of passing data is through props. However, as your application grows, passing data through multiple levels of components (called "prop drilling...context API
Ayusharpcoderreacttonext.hashnode.dev·Dec 13, 2024The Role of State Management in React: A Guide to Redux, Context API, and MoreState management is at the heart of every modern React application. As your app grows in complexity, managing the flow of data between components becomes increasingly challenging. That’s where state management solutions come in, ensuring your applica...1 likewebdev
Nowon Leeblog.nwlee.com·Dec 8, 2024합성 컴포넌트 패턴에서 컨텍스트 Api합성 컴포넌트 합성 컴포넌트 패턴은 UI를 작성할 때 여러 개로 분리된 컴포넌트를 조합하여 컴포넌트를 개발하는 패턴이다. 컴포넌트의 조합을 활용함으로써 다양한 상황에서 컴포넌트를 도입할 수 있다. 해당 패턴으로 개발한 헤더 컴포넌트의 예시이다. 컴포넌트는 왼쪽, 가운데, 오른쪽 총 세 가지 구역으로 나뉘어져 있다. Children.toArray 메소드로 하위 컴포넌트를 배열 타입으로 변환한 다음 각 컴포넌트의 타입을 비교함으로써 헤더 내 어디에...React
RIMANSHU SINGHforme.hashnode.dev·Nov 22, 2024How to Use React's Context API for State ManagementHey folks, Let's dive deep into the concept of ContextAPI. Why do we need this When you create an application, managing state is an essential concept in React. A common way to manage state is by passing props, which means sending data from one compon...3 likesReact