#1 PURE REDUX: COUNTER
#1.0 Vanilla Counter
#1.1 Store and Reducer
import { createStore } from "redux";
const reducer = (state) => { // 여기의 state는 초깃값
return abcdfefef
}
const store = createStore(reducer) // reducer에 store 역할 부여
//reducer의 return 값이 state가 됨#1.2 Actions
#1.3 Subscriptions
#1.4 Recap Refactor
Last updated