Files: 99bc16e5212f7086422943407911f7c31443ab4c / app / todos / reducer.js
225 bytesRaw
1 | export default function todos (state = {}, action) { |
2 | switch (action.type) { |
3 | case 'CREATE_TODO': |
4 | return { |
5 | ...state, |
6 | [action.payload.id]: action.payload |
7 | } |
8 | default: |
9 | return state |
10 | } |
11 | } |
12 |
Built with git-ssb-web