Skip to content

Instantly share code, notes, and snippets.

@jpalala
jpalala / react_redux_cheatsheet.jsx
Created February 8, 2017 17:48
React+Redux cheat sheet
// ************************************** redux **********************************************
import { applyMiddleware, createStore } from 'redux';
const reducer = (state, action) => {
switch (action.type) {
case 'FOO': { return action.bar; }
};
return state;
};