0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-05-10 03:08:40 +00:00

Merge branch 'master' into HTMLDownload

This commit is contained in:
David Bolack
2026-02-06 17:00:25 -06:00
101 changed files with 2590 additions and 2376 deletions
+4 -4
View File
@@ -1,8 +1,8 @@
const React = require('react');
const Nav = require('client/homebrew/navbar/nav.jsx');
const { printCurrentBrew } = require('../../../shared/helpers.js');
import React from 'react';
import Nav from './nav.jsx';
import { printCurrentBrew } from '../../../shared/helpers.js';
module.exports = function(props){
export default function(props){
return <Nav.dropdown>
<Nav.item color='grey' icon='fas fa-question-circle'>
export