| 11 | // Action Creator |
| 12 | // ================================ |
| 13 | const fetchMsg = queryBody => dispatch => |
| 14 | msgService |
| 15 | .fetch(queryBody) |
| 16 | .then(msgs => dispatch({ |
| 17 | type: FETCH_MSG, |
| 18 | payload: msgs |
| 19 | })) |
| 20 | |
| 21 | const addMsg = msgBody => dispatch => |
| 22 | msgService |