Skip to content

Instantly share code, notes, and snippets.

@petehunt
Created September 24, 2013 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save petehunt/6689857 to your computer and use it in GitHub Desktop.
Save petehunt/6689857 to your computer and use it in GitHub Desktop.
/** @jsx React.DOM */
var Hello = React.createClass({
mixins: [LinkedStateMixin],
getInitialState: function() {
return {name: 'phunt'};
},
render: function() {
return (
<div>
<input type="text" valueLink={this.linkState('name')} />
{this.state.name}
</div>
);
}
});
React.renderComponent(<Hello />, document.body);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment