Skip to content

Instantly share code, notes, and snippets.

@codedmart
Created January 20, 2015 16:46
Show Gist options
  • Save codedmart/f856084ef6f0a0375ca0 to your computer and use it in GitHub Desktop.
Save codedmart/f856084ef6f0a0375ca0 to your computer and use it in GitHub Desktop.
/** @jsx React.DOM */
var React = require('react');
var Component = require('omniscient');
module.exports = Home = Component(function(props) {
var cursor = props.data.cursor;
var onChange = function(e) {
cursor.update('content', function(content) {
return e.target.value;
});
};
return <div>
<h1>{cursor.get('title')}</h1>
<h1>{cursor.get('content')}</h1>
<div><input type="text" value={cursor.get('content')} onChange={onChange}/></div>
</div>
}).jsx;
/** @jsx React.DOM */
var React = require('react');
var Component = require('omniscient');
var HomeContent = Component(function(props) {
var cursor = props.data.cursor;
var onChange = function(e) {
cursor.update('content', function(content) {
return e.target.value;
});
};
return <div>
<h1>{cursor.get('title')}</h1>
<h1>{cursor.get('content')}</h1>
<div><input type="text" value={cursor.get('content')} onChange={onChange}/></div>
</div>
}).jsx;
module.exports = Home = React.createClass({
render: function() {
return <HomeContent data={this.props} />
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment