0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-07 20:42:44 +00:00

Added the new pages and router

This commit is contained in:
Scott Tolksdorf
2015-12-20 13:16:57 -05:00
parent 0a9143bcd4
commit 3059586e20
11 changed files with 152 additions and 45 deletions

View File

@@ -0,0 +1,25 @@
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;