Skip to content

Instantly share code, notes, and snippets.

View reggie3's full-sized avatar

Reginald Johnson reggie3

View GitHub Profile
@drcmda
drcmda / *.js
Last active November 15, 2017 09:41
Redux thunk example
import { createStore, applyMiddleware } from 'redux';
import thunk from 'redux-thunk';
import _ from 'lodash';
// these types describe what i can do
const types = {
fetch: "ACTION_ADD",
remove: "ACTION_REMOVE"
}