Files: d7bb4a1cb809f7db3135cc7d21052d9c2636bd45 / 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