0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-02 08:32:41 +00:00
Files
homebrewery/client/homebrew/navbar/newbrew.navitem.jsx
Víctor Losada Hernández edbe8cdace initial commit
2024-01-19 18:17:03 +01:00

13 lines
232 B
JavaScript

const React = require('react');
const Nav = require('naturalcrit/nav/nav.jsx');
module.exports = function(props){
return <Nav.item
href='/new'
newTab={true}
color='purple'
icon='fas fa-plus-square'>
new
</Nav.item>;
};