Created
June 22, 2016 21:21
-
-
Save anonymous/6f53b7fa96a92f4df4bf3ce21f101c76 to your computer and use it in GitHub Desktop.
This file contains 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
/** @jsx React.createElement */ | |
/* ^ JS bin needs this or it will start complaining */ | |
/* Redux code to create a counter. Needs a div with ID "app" to start working */ | |
const counter = (state = 0, action) => { | |
switch(action.type) { | |
case 'INCREMENT': | |
return state + 1 | |
case 'DECREMENT': | |
return state - 1 | |
default: | |
return state | |
} | |
} | |
const Counter = ({value, onIncrement, onDecrement}) => ( | |
<div> | |
<h1>{value}</h1> | |
<button onClick={onIncrement}>+</button> | |
<button onClick={onDecrement}>-</button> | |
</div> | |
) | |
const {createStore} = Redux | |
const store = createStore(counter) | |
const render = () => { | |
ReactDOM.render( | |
<Counter | |
value = {store.getState()} | |
onIncrement = {() => store.dispatch({type: 'INCREMENT'})} | |
onDecrement = {() => store.dispatch({type: 'DECREMENT'})} | |
/>, | |
document.getElementById('app') | |
) | |
} | |
store.subscribe(render) | |
store.dispatch({type:'INCREMENT'}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment