Created
September 10, 2018 05:59
-
-
Save Sunil-ghodela/53e2d9b7df0e4992cd2cb252196b1f90 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/zifuyo
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/redux/4.0.0/redux.min.js"> | |
</script> | |
<script src="https://unpkg.com/[email protected]/dist/react.min.js"></script> | |
<script src="https://unpkg.com/[email protected]/dist/react-dom.min.js"></script> | |
</head> | |
<body> | |
<div id='root'></div> | |
<script id="jsbin-javascript"> | |
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('root') | |
); | |
}; | |
store.subscribe(render); | |
render(); | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">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('root') | |
); | |
}; | |
store.subscribe(render); | |
render();</script></body> | |
</html> |
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
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('root') | |
); | |
}; | |
store.subscribe(render); | |
render(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment