Skip to content

Instantly share code, notes, and snippets.

@jdjkelly
Created April 30, 2017 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdjkelly/84349a9157987159f10a1d9d74662817 to your computer and use it in GitHub Desktop.
Save jdjkelly/84349a9157987159f10a1d9d74662817 to your computer and use it in GitHub Desktop.
simplest-possible-redux-app-with-preload
import { createStore } from 'redux';
const app = createStore((state, action) => { return state }, { booted_at: new Date() });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment