mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-02 19:22:47 +00:00
26 lines
397 B
JavaScript
26 lines
397 B
JavaScript
var React = require('react');
|
|
var _ = require('lodash');
|
|
var cx = require('classnames');
|
|
|
|
var EditPage = React.createClass({
|
|
getDefaultProps: function() {
|
|
return {
|
|
text : "",
|
|
id : null
|
|
};
|
|
},
|
|
|
|
render : function(){
|
|
var self = this;
|
|
return(
|
|
<div className='editPage'>
|
|
{this.props.id}
|
|
EditPage Ready!
|
|
{this.props.text}
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
module.exports = EditPage;
|