0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-13 04:22:40 +00:00
Files
homebrewery/client/homebrew/navbar/newbrew.navitem.jsx
Trevor Buckner f5d5f8cf67 Simplify Nav Item
2021-03-05 22:31:59 -05:00

12 lines
212 B
JavaScript

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