"Redux is a predictable state container for JavaScript apps"
{ type: 'ADD_TODO', text: 'Build my first Redux app' }
function reducer(previousState, action) { return newState; }
By Alin Chiuaru