Skip to content

Instantly share code, notes, and snippets.

@jdjkelly
Last active April 30, 2017 18:47
Show Gist options
  • Save jdjkelly/99934541a22038579dbce7378642313a to your computer and use it in GitHub Desktop.
Save jdjkelly/99934541a22038579dbce7378642313a to your computer and use it in GitHub Desktop.
simplest-possible-redux-app
import { createStore } from 'redux'; // CommonJS: const createStore = require('redux')['createStore']
const app = createStore((state, action) => { return state });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment