0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-10 13:32:45 +00:00
Add tooltip and classNames to UserPage and BrewItem
This commit is contained in:
Trevor Buckner
2021-08-08 00:00:16 -04:00
committed by GitHub
2 changed files with 11 additions and 4 deletions

View File

@@ -141,11 +141,11 @@ const UserPage = createClass({
<div className='content V3'>
<div className='phb'>
{this.renderSortOptions()}
<div>
<div className='published'>
<h1>{this.getUsernameWithS()} brews</h1>
{this.renderBrews(brews.published)}
</div>
<div>
<div className='unpublished'>
<h1>{this.getUsernameWithS()} unpublished brews</h1>
{this.renderBrews(brews.private)}
</div>