0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-22 20:29:43 +00:00
Files
homebrewery/client/homebrew/navbar/print.navitem.jsx
Víctor Losada Hernández fc8656e05b all imports
2026-01-20 22:14:34 +01:00

10 lines
279 B
JavaScript

import React from 'react';
import Nav from 'client/homebrew/navbar/nav.jsx';
import { printCurrentBrew } from '../../../shared/helpers.js';
export default function(){
return <Nav.item onClick={printCurrentBrew} color='purple' icon='far fa-file-pdf'>
get PDF
</Nav.item>;
};