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

Fixed the User page

This commit is contained in:
Scott Tolksdorf
2016-11-27 13:45:38 -05:00
parent 21d3c5bfc8
commit 30942785d1
6 changed files with 48 additions and 9 deletions

View File

@@ -17,9 +17,9 @@ const BrewItem = React.createClass({
render : function(){
const brew = this.props.brew;
return <div className='brewItem'>
return <div className='brewItem'title={brew.description}>
<h4>{brew.title}</h4>
<p className='description'><em>{brew.description}</em></p>
<p className='description' ><em>{brew.description}</em></p>
<hr />
<ul>
<li><strong>Authors: </strong> {brew.authors.join(', ')}</li>