Redux
1.Redux란? 상태 관리 라이브러리다. 복잡한 애플리케이션을 쉽게 만들어 준다. 리액트 앱을 만들지 않아도 된다. 리액트를 위해서만 사용하지 않는다. 2.왜 Redux를 사용해야 할까? 2.Redux Cycle 3.Redux 예제 1 actions/index.js export const selectSong = song => { return { type: "SONG_SELECTED", payload: song } } reducers/index.js import { combineReducers } from "redux" const songsReducer = () => { return [ { title: 'No Scrubs', duration: '4:05' }, { title: 'Macarena', dur..
React
2020. 8. 11. 12:10