mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-05-07 16:38:38 +00:00
5faa12a79e
Adds menu items for "regular", zipped, and inline output. Currently only displays inline output with *no* URL massaging ( all relative path references are still relative ) Displays, not downloads
10 lines
303 B
React
10 lines
303 B
React
const React = require('react');
|
|
const Nav = require('client/homebrew/navbar/nav.jsx');
|
|
const { printCurrentBrew } = require('../../../shared/helpers.js');
|
|
|
|
module.exports = function(props){
|
|
return <Nav.item onClick={printCurrentBrew} color='purple' icon='far fa-file-pdf'>
|
|
get PDF
|
|
</Nav.item>;
|
|
};
|