รายละเอียดสำหรับเรียนรู้ React ปี 2020-2023 โดยโค้ชพล ดูหลักสูตรได้ที่ https://www.nextflow.in.th/react-training
// src/redux/reducer.js
import Action from './action'
const initialState = {
items: []
}
export default (state = initialState, { type, payload }) => {
switch (type) {
case Action.CREATE_NEW_ITEM:
return { ...state, items: [...state.items, payload] }
// โหลด payload เป็นข้อมูลของ property items
case Action.MESSAGE_LOADED:
return { ...state, items: [...payload] }
default:
return state
}
}