Skip to content

Instantly share code, notes, and snippets.

@mobinni
Created January 24, 2016 22:24
Show Gist options
  • Save mobinni/7328dbec080d969bfc64 to your computer and use it in GitHub Desktop.
Save mobinni/7328dbec080d969bfc64 to your computer and use it in GitHub Desktop.
A Modern Isomorphic Stack with Redux - Part 2
function feeds(state = [], action) {
if (action.type === 'get') return action.payload;
else return state;
}
export default {
feeds
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment