0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-07 18:32:40 +00:00

Clean up unnecessary code.

This commit is contained in:
G.Ambatte
2021-06-23 21:16:33 +12:00
parent 715ee88f38
commit ff7585b69d

View File

@@ -67,13 +67,13 @@ const SharePage = createClass({
if(!this.state.showDropdown) return null; if(!this.state.showDropdown) return null;
return <div className='dropdown'> return <div className='dropdown'>
<a href={`/source/${this.processShareId()}`} color='teal' icon='fas fa-code' className='item'> <a href={`/source/${this.processShareId()}`} className='item'>
view view
</a> </a>
<a href={`/download/${this.processShareId()}`} color='red' icon='fas fa-download' className='item'> <a href={`/download/${this.processShareId()}`} className='item'>
download download
</a> </a>
<a href={`/new/${this.processShareId()}`} color='red' icon='fas fa-download' className='item'> <a href={`/new/${this.processShareId()}`} className='item'>
clone to new clone to new
</a> </a>
</div>; </div>;