Created
January 20, 2015 16:46
-
-
Save codedmart/f856084ef6f0a0375ca0 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.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; |
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.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