git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 33c8c3ea806c7b24197e47850836a31c48daefd6

Files: 33c8c3ea806c7b24197e47850836a31c48daefd6 / app / todos / reducer.js

225 bytesRaw
1export 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