렌더링 최적화/Redux

Redux의 렌더링 최적화 이해하기

Immer Redux Toolkit은 리듀서 로직에 내부적으로 immer를 채택하고 있습니다. import produce from 'immer'; const initialState = { counter: 0, text: 'hello', list: [] }; const nextState = produce(initialState, draft => { draft.counter = 1; draft.text = 'world'; draft.list.push({ id: 1, text: 'immer' }); }); draft라는 proxy객체 기반의 업데이트를 수행 const exampleSlice = createSlice({ initialState, reducers: { exampleReducer:(state,act..

JakeTheMaverick