Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- json #typescript
- db
- storagemanger
- kafka
- DP
- Implementation
- SW
- database
- entityrelational
- datamodel
- designpatternn
Archives
- Today
- Total
목록프로그래밍/Frontend (1)
i.am.developer
React Redux 공부
https://www.valentinog.com/blog/redux/#read-this-redux-where-are-we-now Redux란 무엇? REDUX에서 쓰이는 것들 Action, Reducer, Middleware 가 있다. 근데 그것들을 묶어주는 것이 바로 Store이다. Redux에서 Store는 magic이며 모든 application의 state를 갖고 있는 것이다. import { createStore } from "redux"; import rootReducer from "../reducers/index"; const store = createStore(rootReducer); export default store; 보다시피 store는 createStore의 반환값이다. creat..
프로그래밍/Frontend
2021. 3. 25. 01:18