Last active
May 30, 2017 10:03
-
-
Save RyanAtViceSoftware/4a834a92e69755964f4f to your computer and use it in GitHub Desktop.
Hello React - state - how to use state to create dynamic behavior. JsFiddle: http://jsfiddle.net/gh/gist/library/pure/4a834a92e69755964f4f/
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
| <script src="https://fb.me/react-with-addons-0.14.0.js"></script> | |
| <script src="https://fb.me/react-dom-0.14.0.js"></script> | |
| <div id="view"/> |
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
| var HelloReact = React.createClass({ | |
| getInitialState: function() { | |
| return { | |
| message: 'I am from default state' | |
| }; | |
| }, | |
| updateMessage: function(e) { | |
| this.setState({message: e.target.value}); | |
| }, | |
| render: function() { | |
| return ( | |
| <div> | |
| <input type='text' onChange={this.updateMessage}/> | |
| <div>Hello React</div> | |
| <div>{this.state.message}</div> | |
| </div> | |
| ); | |
| } | |
| }); | |
| ReactDOM.render( | |
| <HelloReact />, | |
| document.getElementById('view')); |
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
| name: ReactJs example by Ryan Vice - www.ViceSoftware.com | |
| description: Hello React - props - how to pass default prop values. | |
| authors: | |
| - Ryan Vice | |
| resources: | |
| normalize_css: no | |
| wrap: h | |
| panel_js: 3 | |
| panel_css: 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment