Last active
April 30, 2017 18:47
-
-
Save jdjkelly/99934541a22038579dbce7378642313a to your computer and use it in GitHub Desktop.
simplest-possible-redux-app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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