Skip to content

Instantly share code, notes, and snippets.

View dmutende's full-sized avatar
🏠
Working from home

Derek Prince dmutende

🏠
Working from home
View GitHub Profile
@muneneevans
muneneevans / reducer.js
Created November 4, 2017 10:13
Reducer to handle created actions
import * as types from "./actionTypes"
import Immutable from "seamless-immutable"
const initialState = Immutable({
posts: undefined,
postsIsFetched: false
})