0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-14 12:52:42 +00:00

Added page accents, page shadow, and spacing

This commit is contained in:
Scott
2015-12-22 21:11:08 -05:00
parent 8a4d840717
commit ecd17a22c7
5 changed files with 46 additions and 6 deletions

View File

@@ -2,6 +2,7 @@ var React = require('react');
var _ = require('lodash');
var cx = require('classnames');
var Statusbar = require('../statusbar/statusbar.jsx');
var PHB = require('../phb/phb.jsx');
var Editor = require('../editor/editor.jsx');
@@ -36,6 +37,7 @@ var HomePage = React.createClass({
var self = this;
return(
<div className='homePage'>
<Statusbar />
<Editor text={this.state.text} onChange={this.handleTextChange} />
<PHB text={this.state.text} />
</div>