Displaying tweets

This commit is contained in:
Rodrigo Pedroso 2019-06-21 00:06:42 -04:00
commit 6759a05743
8 changed files with 552 additions and 44 deletions

View file

@ -14,7 +14,7 @@ function rootReducer(state = initialState, action) {
else if (action.type === "DATA_LOADED") {
return Object.assign({}, state, {
remoteArticles: state.remoteArticles.concat(action.payload)
remoteArticles: state.remoteArticles.concat(action.payload.message.statuses)
})
}