국비개발자과정_Day82
<!DOCTYPE html> <html lang=”ko”> <head> <meta charset=”UTF-8″> <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Flux Architecture</title> <script src=”http://luppang.m/app.js” type=”module”></script> </head> <body> <div id=”count”>count:</div> <div id=”msg”>msg:</div> </body> </html> import { createStore } from “./redux.js” import { reducer } from “./reducer.js” // worker함수 import { decrease, increase, setToastFalse, setToastMsg } from “./actions.js” // 사용 – 함수 호출 … Read more