0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-08 22:32:41 +00:00

Status bar nearly done, first pass on the split pane workign for edit page

This commit is contained in:
Scott Tolksdorf
2016-01-03 04:39:56 -05:00
parent 29d03c8263
commit 4ff1f3dc37
13 changed files with 255 additions and 74 deletions

View File

@@ -2,6 +2,8 @@ var React = require('react');
var _ = require('lodash');
var cx = require('classnames');
var Statusbar = require('../statusbar/statusbar.jsx');
var PHB = require('../phb/phb.jsx');
var SharePage = React.createClass({
@@ -19,9 +21,13 @@ var SharePage = React.createClass({
},
render : function(){
console.log(this.props.entry);
return(
<div className='sharePage'>
<Statusbar
shareId={this.props.entry.shareId}
/>
<PHB text={this.props.entry.text} />
</div>
);