0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-22 20:29:43 +00:00
Files
homebrewery/client/homebrew/navbar/patreon.navitem.jsx
Víctor Losada Hernández 0d6c3c7e33 fix module.exports
2026-01-20 19:56:37 +01:00

14 lines
288 B
JavaScript

const React = require('react');
const Nav = require('client/homebrew/navbar/nav.jsx');
export default function(props){
return <Nav.item
className='patreon'
newTab={true}
href='https://www.patreon.com/NaturalCrit'
color='green'
icon='fas fa-heart'>
help out
</Nav.item>;
};