0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-03-24 06:28:11 +00:00

Proof of concept working

This commit is contained in:
Scott Tolksdorf
2016-04-02 12:02:05 -04:00
parent e61e1a698d
commit 263257bfb8
16 changed files with 344 additions and 112 deletions

View File

@@ -16,10 +16,8 @@ var SheetEditor = React.createClass({
render : function(){
return <div className='sheetEditor'>
SheetEditor Ready!
<h2>Sheet Template</h2>
<textarea value={this.props.code} onChange={this.handleCodeChange} />
</div>
}
});

View File

@@ -1,8 +1,8 @@
.sheetEditor{
textarea{
margin-top: 50px;
height : 500px
height : 300px;
width : 80%;
}
}