2024.05.29 Today Yoonsung Learned

Ryany (윤성)·2024년 5월 30일
post-thumbnail

TIL

스탠다드반 6차 강의

  1. 리덕스는 ducks 패턴에 따라 module화를 기본으로 파일구성한다
  • 하나의 js파일에 initialState, action, reducer 를 모두 관리하는 것이 ducks 패턴의 기본이다
  1. Context API는 전역 상태를 관리하기 위한 수단입니다.
return (
  <div>
    <h1>Text Input and Listing</h1>
    <TextInput onAddText={onAddText} />
    <TextContext.provider value={{ texts }}>
      <TextList />
    </TextContext.Provider>
  </div>
);
  1. 리액트에서는 컴포넌트명 외에는 PascalCase 를 사용하지 않는다

  2. 리덕스 Store 셋업 시 코드스니펫이 필요하다면?

profile
Junior Developer :>

0개의 댓글