티스토리

공부 정리
검색하기

블로그 홈

공부 정리

ash-o.tistory.com/m

Ash_O 님의 블로그입니다.

구독자
2
방명록 방문하기

주요 글 목록

  • [redux] concepts and data flow 출처 : https://ko.redux.js.org/tutorials/fundamentals/part-2-concepts-data-flow Background Concepts state management import react, { useState } from "React"; function Counter() { // state const [counter, setCounter] = useState(0); // action // code that causes an update to the state when something happens const increment = () => { setCounter((prevCounter) => prevCounter + 1); }; // view return ( v.. 공감수 0 댓글수 1 2024. 2. 11.
  • [redux] 개요 redux overview This tutorial will introduce you to the core concepts, principles, and patterns for using Redux. part1 리덕스 앱 예제 소개 part2 리덕스 앱에서 데이터가 흐르는 방식과 디테일 소개 part3 state, action, reducer에 대한 활용 redux가 어떻게 작동하는지 설명 이후 표준 패턴, 추상화 what is redux 리덕스는 app 상태를 ‘action’이라고 불리는 이벤트를 이용해서 관리하고 갱신하는 패턴과 라이브러리이다. 상태에 대해 중앙 집중식 저장소 역할을하고, 예측 가능한 방식으로만 업데이트 될 수 있도록 하는 규칙을 제공한다. why should i use Redux 리.. 공감수 0 댓글수 0 2024. 2. 2.
    문의안내
    • 티스토리
    • 로그인
    • 고객센터

    티스토리는 카카오에서 사랑을 담아 만듭니다.

    © Kakao Corp.