JS Redux
Add 0 Minus // 리덕스 import import { createStore } from "redux"; // Element 획득 const add = document.getElementById("add"); const minus = document.getElementById("minus"); const number = document.querySelector("span"); // 액션값 정의 // -> 미리 정의하는 이유는 오타방지 const ADD = "ADD"; const MINUS = "MINUS"; // 리덕스 함수 정의 const countModifier = (count = 0, action) => { switch (action.type) { case ADD: return count +..